Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 23 lines 482 B view raw
1{ buildPythonPackage 2, fetchPypi 3, zope_interface 4, sphinx, manuel 5}: 6 7buildPythonPackage rec { 8 pname = "persistent"; 9 version = "4.4.3"; 10 11 nativeBuildInputs = [ sphinx manuel ]; 12 propagatedBuildInputs = [ zope_interface ]; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "05hi8yfvxl5ns7y7xhbgbqp78ydaxabjp5b64r4nmrfdfsqylrb7"; 17 }; 18 19 meta = { 20 description = "Automatic persistence for Python objects"; 21 homepage = http://www.zope.org/Products/ZODB; 22 }; 23}