33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, graphviz
|
|
, stdlib-list
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydeps";
|
|
version = "1.11.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thebjorn";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-XAx7B3v+7xYiW15nJgiL82YlNeBxW80M0Rq0LMMsWu0=";
|
|
};
|
|
|
|
buildInputs = [
|
|
graphviz
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
graphviz
|
|
stdlib-list
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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";
|
|
changelog = "https://github.com/thebjorn/pydeps/releases/tag/v${version}";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|