f5ce8f86df
This reverts commitfc23242220
, reversing changes made to754816b84b
. We don't have many binaries yet. Comment on the original merge commit.
38 lines
679 B
Nix
38 lines
679 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, lxml
|
|
, networkx
|
|
, dateutil
|
|
, six
|
|
, pydotplus
|
|
, rdflib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "prov";
|
|
version = "1.5.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "640dc158d931403bc6c1a0ad80702caae71f810bac21f90ec605865c8444b7bb";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
networkx
|
|
dateutil
|
|
six
|
|
pydotplus
|
|
rdflib
|
|
];
|
|
doCheck = false; # takes ~60 mins
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Python library for W3C Provenance Data Model (PROV)";
|
|
homepage = https://github.com/trungdong/prov;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ashgillman ];
|
|
};
|
|
}
|