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

53 lines
955 B
Nix
Raw Normal View History

2017-08-09 05:18:05 +00:00
{ stdenv
, fetchPypi
, buildPythonPackage
, isPy3k
, zope_testrunner
, transaction
, six
, wheel
, zope_interface
, zodbpickle
, zconfig
, persistent
, zc_lockfile
, BTrees
, manuel
}:
buildPythonPackage rec {
pname = "ZODB";
2017-10-25 18:04:35 +00:00
version = "5.3.0";
2017-08-09 05:18:05 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-10-25 18:04:35 +00:00
sha256 = "633c2f89481d8ebc55639b59216f7d16d07b44a94758850c0b887006967214f3";
2017-08-09 05:18:05 +00:00
};
2017-10-29 11:16:03 +00:00
patches = [
./ZODB-5.3.0-fix-tests.patch
];
2017-08-09 05:18:05 +00:00
propagatedBuildInputs = [
manuel
transaction
zope_testrunner
six
wheel
zope_interface
zodbpickle
zconfig
persistent
zc_lockfile
BTrees
];
meta = with stdenv.lib; {
description = "Zope Object Database: object database and persistence";
homepage = https://pypi.python.org/pypi/ZODB;
2017-08-09 05:18:05 +00:00
license = licenses.zpl21;
maintainers = with maintainers; [ goibhniu ];
};
}