mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
b83e23c70d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-persistent/versions
24 lines
482 B
Nix
24 lines
482 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, zope_interface
|
|
, sphinx, manuel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "persistent";
|
|
version = "4.4.3";
|
|
|
|
nativeBuildInputs = [ sphinx manuel ];
|
|
propagatedBuildInputs = [ zope_interface ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "05hi8yfvxl5ns7y7xhbgbqp78ydaxabjp5b64r4nmrfdfsqylrb7";
|
|
};
|
|
|
|
meta = {
|
|
description = "Automatic persistence for Python objects";
|
|
homepage = http://www.zope.org/Products/ZODB;
|
|
};
|
|
}
|