nixpkgs/pkgs/development/python-modules/plastexdepgraph/default.nix
2024-07-23 00:08:58 +03:00

39 lines
727 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
pygraphviz,
plasTeX,
}:
buildPythonPackage {
pname = "plastexdepgraph";
version = "0.0.4";
pyproject = true;
src = fetchFromGitHub {
repo = "plastexdepgraph";
owner = "PatrickMassot";
rev = "0.0.4";
hash = "sha256-Q13uYYZe1QgZHS4Nj8ugr+Fmhva98ttJj3AlXTK6XDw=";
};
build-system = [ setuptools ];
dependencies = [
pygraphviz
plasTeX
];
meta = {
description = "plasTeX plugin allowing to build dependency graphs";
homepage = "https://github.com/PatrickMassot/plastexdepgraph";
maintainers = with lib.maintainers; [ niklashh ];
license = lib.licenses.asl20;
};
}