mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
39 lines
727 B
Nix
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;
|
||
|
};
|
||
|
}
|