2017-03-24 22:01:31 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, persistent, zope_interface, transaction }:
|
2017-03-15 10:29:27 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "BTrees";
|
2017-05-27 14:24:47 +02:00
|
|
|
version = "4.4.1";
|
2017-03-15 10:29:27 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2017-07-22 04:20:45 +02:00
|
|
|
buildInputs = [ transaction ];
|
|
|
|
propagatedBuildInputs = [ persistent zope_interface ];
|
2017-03-15 10:29:27 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-27 14:24:47 +02:00
|
|
|
sha256 = "a2738b71693971c1f7502888d649bef270c65f026db731e03d53f1ec4edfe8a3";
|
2017-03-15 10:29:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Scalable persistent components";
|
|
|
|
homepage = http://packages.python.org/BTrees;
|
|
|
|
license = licenses.zpt21;
|
|
|
|
};
|
|
|
|
}
|