1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_interface, cffi 5, sphinx, manuel 6}: 7 8buildPythonPackage rec { 9 pname = "persistent"; 10 version = "4.7.0"; 11 12 nativeBuildInputs = [ sphinx manuel ]; 13 propagatedBuildInputs = [ zope_interface cffi ]; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "0ef7c05a6dca0104dc224fe7ff31feb30a63d970421c9462104a4752148ac333"; 18 }; 19 20 meta = { 21 description = "Automatic persistence for Python objects"; 22 homepage = "http://www.zodb.org/"; 23 license = lib.licenses.zpl21; 24 }; 25}