evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / plastexdepgraph / default.nix
blob7fcc029ad97f46eb79c3d05dccb20b83c941a1ac
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
6   # build-system
7   setuptools,
9   # dependencies
10   pygraphviz,
11   plasTeX,
13 buildPythonPackage {
14   pname = "plastexdepgraph";
15   version = "0.0.4";
16   pyproject = true;
18   src = fetchFromGitHub {
19     repo = "plastexdepgraph";
20     owner = "PatrickMassot";
21     rev = "0.0.4";
22     hash = "sha256-Q13uYYZe1QgZHS4Nj8ugr+Fmhva98ttJj3AlXTK6XDw=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [
28     pygraphviz
29     plasTeX
30   ];
32   meta = {
33     description = "plasTeX plugin allowing to build dependency graphs";
34     homepage = "https://github.com/PatrickMassot/plastexdepgraph";
35     maintainers = with lib.maintainers; [ niklashh ];
36     license = lib.licenses.asl20;
37   };