python37Packages.persistent: 4.4.3 -> 4.5.0 (#61911)
* python37Packages.persistent: 4.4.3 -> 4.5.0 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.7-persistent/versions * python.pkgs.persistent: add cffi to runtime deps + update meta (homepage and license)
This commit is contained in:
parent
848ae6a932
commit
2327dc0b23
@ -1,23 +1,25 @@
|
|||||||
{ buildPythonPackage
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, zope_interface
|
, zope_interface, cffi
|
||||||
, sphinx, manuel
|
, sphinx, manuel
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "persistent";
|
pname = "persistent";
|
||||||
version = "4.4.3";
|
version = "4.5.0";
|
||||||
|
|
||||||
nativeBuildInputs = [ sphinx manuel ];
|
nativeBuildInputs = [ sphinx manuel ];
|
||||||
propagatedBuildInputs = [ zope_interface ];
|
propagatedBuildInputs = [ zope_interface cffi ];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "05hi8yfvxl5ns7y7xhbgbqp78ydaxabjp5b64r4nmrfdfsqylrb7";
|
sha256 = "0slbvq1m3rilgyhj6i522rsyv592xv9pmvm61mrmgkgf40kfnz69";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Automatic persistence for Python objects";
|
description = "Automatic persistence for Python objects";
|
||||||
homepage = http://www.zope.org/Products/ZODB;
|
homepage = "http://www.zodb.org/";
|
||||||
|
license = lib.licenses.zpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user