2018-06-28 08:12:43 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, persistent
|
|
|
|
, zope_interface
|
|
|
|
, transaction
|
|
|
|
, zope_testrunner
|
|
|
|
}:
|
2017-03-15 10:29:27 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "BTrees";
|
2018-06-12 18:46:58 +02:00
|
|
|
version = "4.5.0";
|
2017-03-15 10:29:27 +01:00
|
|
|
|
2017-07-22 04:20:45 +02:00
|
|
|
buildInputs = [ transaction ];
|
|
|
|
propagatedBuildInputs = [ persistent zope_interface ];
|
2018-06-28 08:12:43 +02:00
|
|
|
checkInputs = [ zope_testrunner ];
|
2017-03-15 10:29:27 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 18:46:58 +02:00
|
|
|
sha256 = "46b02cb69b26a5238db771ea1955b503df73ecf254bb8063af4c61999fc75b5c";
|
2017-03-15 10:29:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Scalable persistent components";
|
|
|
|
homepage = http://packages.python.org/BTrees;
|
2017-08-06 13:49:18 +02:00
|
|
|
license = licenses.zpl21;
|
2017-03-15 10:29:27 +01:00
|
|
|
};
|
|
|
|
}
|