1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/python-modules/persistent/default.nix

26 lines
534 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, zope_interface, cffi
, sphinx, manuel
}:
buildPythonPackage rec {
pname = "persistent";
2019-11-11 11:13:38 +00:00
version = "4.5.1";
nativeBuildInputs = [ sphinx manuel ];
propagatedBuildInputs = [ zope_interface cffi ];
src = fetchPypi {
inherit pname version;
2019-11-11 11:13:38 +00:00
sha256 = "73862779577cb8637f2b68e7edee9a9b95cf33d0b83cb6e762f0f3fc12897aa6";
};
meta = {
description = "Automatic persistence for Python objects";
homepage = "http://www.zodb.org/";
license = lib.licenses.zpl21;
};
}