depot/third_party/nixpkgs/pkgs/development/python-modules/persistent/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

25 lines
534 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope_interface, cffi
, sphinx, manuel
}:
buildPythonPackage rec {
pname = "persistent";
version = "4.6.4";
nativeBuildInputs = [ sphinx manuel ];
propagatedBuildInputs = [ zope_interface cffi ];
src = fetchPypi {
inherit pname version;
sha256 = "f83f54355a44cf8ec38c29ce47b378a8c70444e9a745581dbb13d201a24cb546";
};
meta = {
description = "Automatic persistence for Python objects";
homepage = "http://www.zodb.org/";
license = lib.licenses.zpl21;
};
}