mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, graphviz
|
|
, stdlib-list
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydeps";
|
|
version = "1.10.24";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thebjorn";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-yDHIZk6+9K5hg4Q6pydd4NwnxSU1+u+dGUiUQph9ccY=";
|
|
};
|
|
|
|
buildInputs = [
|
|
graphviz
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
graphviz
|
|
stdlib-list
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
pyyaml
|
|
];
|
|
|
|
postPatch = ''
|
|
# Path is hard-coded
|
|
substituteInPlace pydeps/dot.py \
|
|
--replace "dot -Gstart=1" "${lib.makeBinPath [ graphviz ]}/dot -Gstart=1"
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Would require to have additional modules available
|
|
"test_find_package_names"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pydeps"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module dependency visualization";
|
|
homepage = "https://github.com/thebjorn/pydeps";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|