Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 534 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_interface, cffi 5, sphinx, manuel 6}: 7 8buildPythonPackage rec { 9 pname = "persistent"; 10 version = "4.6.4"; 11 12 nativeBuildInputs = [ sphinx manuel ]; 13 propagatedBuildInputs = [ zope_interface cffi ]; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "f83f54355a44cf8ec38c29ce47b378a8c70444e9a745581dbb13d201a24cb546"; 18 }; 19 20 meta = { 21 description = "Automatic persistence for Python objects"; 22 homepage = "http://www.zodb.org/"; 23 license = lib.licenses.zpl21; 24 }; 25}