mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
substituteAll,
|
|
graphviz,
|
|
pytestCheckHook,
|
|
chardet,
|
|
pythonOlder,
|
|
pyparsing,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydot";
|
|
version = "2.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-YCRq8hUSP6Bi8hzXkb5n3aI6bygN8J9okZ5jeh5PMjU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyparsing ];
|
|
|
|
nativeCheckInputs = [
|
|
chardet
|
|
pytestCheckHook
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./hardcode-graphviz-path.patch;
|
|
inherit graphviz;
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# test_graphviz_regression_tests also fails upstream: https://github.com/pydot/pydot/pull/198
|
|
substituteInPlace test/pydot_unittest.py \
|
|
--replace "test_graphviz_regression_tests" "no_test_graphviz_regression_tests" \
|
|
# Patch path for pytestCheckHook
|
|
substituteInPlace test/pydot_unittest.py \
|
|
--replace "shapefile_dir = os.path.join(test_dir, 'from-past-to-future')" "shapefile_dir = 'test/from-past-to-future'" \
|
|
--replace "path = os.path.join(test_dir, TESTS_DIR_1)" "path = os.path.join('test/', TESTS_DIR_1)"
|
|
'';
|
|
|
|
pytestFlagsArray = [ "test/pydot_unittest.py" ];
|
|
|
|
disabledTests = [
|
|
# broken, fixed after 2.0.0
|
|
"test_graph_with_shapefiles"
|
|
];
|
|
|
|
pythonImportsCheck = [ "pydot" ];
|
|
|
|
meta = with lib; {
|
|
description = "Allows to create both directed and non directed graphs from Python";
|
|
homepage = "https://github.com/erocarrera/pydot";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|