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}