1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-19 11:27:40 +03:00
niv/nix/termtosvg.nix
2019-07-01 16:01:33 +02:00

19 lines
395 B
Nix

{ sources, lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "termtosvg";
version = "0.0.0";
src = sources.termtosvg;
doCheck = false;
propagatedBuildInputs = with python3Packages; [ lxml pyte ];
meta = with lib; {
inherit (sources.termtosvg) homepage description;
license = licenses.bsd3;
maintainers = with maintainers; [ ma27 ];
};
}