2017-07-22 03:26:28 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
2018-09-08 20:35:33 +01:00
|
|
|
, sphinx, manuel
|
2017-07-22 03:26:28 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "persistent";
|
2018-10-24 11:31:01 +01:00
|
|
|
version = "4.4.3";
|
2017-07-22 03:26:28 +01:00
|
|
|
|
2018-09-08 20:35:33 +01:00
|
|
|
nativeBuildInputs = [ sphinx manuel ];
|
2017-07-22 03:26:28 +01:00
|
|
|
propagatedBuildInputs = [ zope_interface ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 11:31:01 +01:00
|
|
|
sha256 = "05hi8yfvxl5ns7y7xhbgbqp78ydaxabjp5b64r4nmrfdfsqylrb7";
|
2017-07-22 03:26:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Automatic persistence for Python objects";
|
|
|
|
homepage = http://www.zope.org/Products/ZODB;
|
|
|
|
};
|
|
|
|
}
|