Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 37 lines 637 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, lxml 5, networkx 6, dateutil 7, rdflib 8, pydot 9}: 10 11buildPythonPackage rec { 12 pname = "prov"; 13 version = "2.0.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "b6438f2195ecb9f6e8279b58971e02bc51814599b5d5383366eef91d867422ee"; 18 }; 19 20 propagatedBuildInputs = [ 21 lxml 22 networkx 23 dateutil 24 rdflib 25 ]; 26 27 checkInputs = [ 28 pydot 29 ]; 30 31 meta = with lib; { 32 description = "A Python library for W3C Provenance Data Model (PROV)"; 33 homepage = "https://github.com/trungdong/prov"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ ashgillman ]; 36 }; 37}