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