1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-16 01:47:08 +03:00
niv/nix/termtosvg.nix
Sivizius 67b245a356
Remove Unnecessary Uses of rec (#390)
* Remove Unnecessary Uses of `rec`

* Bump sources version

---------

Co-authored-by: Nicolas Mattia <nicolas@nmattia.com>
2024-02-21 19:49:09 +01:00

19 lines
391 B
Nix

{ sources, lib, python3Packages }:
python3Packages.buildPythonApplication {
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 ];
};
}