1{ stdenv
2, fetchPypi
3, buildPythonPackage
4, isPy3k
5, zope_testrunner
6, transaction
7, six
8, wheel
9, zope_interface
10, zodbpickle
11, zconfig
12, persistent
13, zc_lockfile
14, BTrees
15, manuel
16}:
17
18buildPythonPackage rec {
19 pname = "ZODB";
20 version = "5.2.4";
21 name = "${pname}-${version}";
22
23 src = fetchPypi {
24 inherit pname version;
25 sha256 = "1pya0inkkxaqmi14gp796cidf894nz64n603zk670jj9xz0wkhgc";
26 };
27
28 propagatedBuildInputs = [
29 manuel
30 transaction
31 zope_testrunner
32 six
33 wheel
34 zope_interface
35 zodbpickle
36 zconfig
37 persistent
38 zc_lockfile
39 BTrees
40 ];
41
42 meta = with stdenv.lib; {
43 description = "Zope Object Database: object database and persistence";
44 homepage = http://pypi.python.org/pypi/ZODB;
45 license = licenses.zpl21;
46 maintainers = with maintainers; [ goibhniu ];
47 };
48}