depot/third_party/nixpkgs/pkgs/development/python-modules/plastexdepgraph/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

38 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;
};
}