1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-18 19:07:19 +03:00
niv/nix/termtosvg.nix

19 lines
391 B
Nix
Raw Normal View History

2019-07-01 17:01:33 +03:00
{ sources, lib, python3Packages }:
2019-04-14 15:49:13 +03:00
python3Packages.buildPythonApplication {
2019-04-14 15:49:13 +03:00
pname = "termtosvg";
2019-07-01 17:01:33 +03:00
version = "0.0.0";
2019-04-14 15:49:13 +03:00
2019-07-01 17:01:33 +03:00
src = sources.termtosvg;
2019-04-14 15:49:13 +03:00
doCheck = false;
propagatedBuildInputs = with python3Packages; [ lxml pyte ];
meta = with lib; {
2019-07-01 17:01:33 +03:00
inherit (sources.termtosvg) homepage description;
2019-04-14 15:49:13 +03:00
license = licenses.bsd3;
maintainers = with maintainers; [ ma27 ];
};
}