fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
42 lines
785 B
Nix
42 lines
785 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lxml,
|
|
networkx,
|
|
python-dateutil,
|
|
rdflib,
|
|
pydot,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "prov";
|
|
version = "2.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b6438f2195ecb9f6e8279b58971e02bc51814599b5d5383366eef91d867422ee";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
networkx
|
|
python-dateutil
|
|
rdflib
|
|
];
|
|
|
|
nativeCheckInputs = [ pydot ];
|
|
|
|
# Multiple tests are out-dated and failing
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "prov" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for W3C Provenance Data Model (PROV)";
|
|
homepage = "https://github.com/trungdong/prov";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ashgillman ];
|
|
};
|
|
}
|