2018-06-28 07:12:43 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, persistent
|
|
|
|
, zope_interface
|
|
|
|
, transaction
|
|
|
|
, zope_testrunner
|
|
|
|
}:
|
2017-03-15 09:29:27 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "BTrees";
|
2018-08-13 08:22:48 +01:00
|
|
|
version = "4.5.1";
|
2017-03-15 09:29:27 +00:00
|
|
|
|
2017-07-22 03:20:45 +01:00
|
|
|
buildInputs = [ transaction ];
|
|
|
|
propagatedBuildInputs = [ persistent zope_interface ];
|
2018-06-28 07:12:43 +01:00
|
|
|
checkInputs = [ zope_testrunner ];
|
2017-03-15 09:29:27 +00:00
|
|
|
|
2018-09-13 01:32:37 +01:00
|
|
|
# disable a failing test that looks broken
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace BTrees/tests/common.py \
|
|
|
|
--replace "testShortRepr" "no_testShortRepr"
|
|
|
|
'';
|
|
|
|
|
2017-03-15 09:29:27 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-13 08:22:48 +01:00
|
|
|
sha256 = "dcc096c3cf92efd6b9365951f89118fd30bc209c9af83bf050a28151a9992786";
|
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
|
|
|
};
|
|
|
|
}
|