nixpkgs/pkgs/development/python-modules/zodb/default.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

2017-08-09 07:18:05 +02:00
{ stdenv
, fetchPypi
, buildPythonPackage
, zope_testrunner
, transaction
, six
, zope_interface
, zodbpickle
, zconfig
, persistent
, zc_lockfile
, BTrees
, manuel
}:
buildPythonPackage rec {
pname = "ZODB";
2018-11-04 11:35:22 +01:00
version = "5.5.1";
2017-08-09 07:18:05 +02:00
src = fetchPypi {
inherit pname version;
2018-11-04 11:35:22 +01:00
sha256 = "20155942fa326e89ad8544225bafd74237af332ce9d7c7105a22318fe8269666";
2017-08-09 07:18:05 +02:00
};
2017-10-29 12:16:03 +01:00
patches = [
./ZODB-5.3.0-fix-tests.patch # still needeed with 5.4.0
# Upstream patch to fix tests with persistent 4.4,
# cannot fetchpatch because only one hunk of the upstream commit applies.
# TODO remove on next release
./fix-tests-with-persistent-4.4.patch
2017-10-29 12:16:03 +01:00
];
2017-08-09 07:18:05 +02:00
propagatedBuildInputs = [
transaction
six
zope_interface
zodbpickle
zconfig
persistent
zc_lockfile
BTrees
];
checkInputs = [
manuel
zope_testrunner
];
2017-08-09 07:18:05 +02:00
meta = with stdenv.lib; {
description = "Zope Object Database: object database and persistence";
homepage = https://pypi.python.org/pypi/ZODB;
2017-08-09 07:18:05 +02:00
license = licenses.zpl21;
maintainers = with maintainers; [ goibhniu ];
};
}