nixpkgs/pkgs/development/python-modules/btrees/default.nix

35 lines
771 B
Nix
Raw Normal View History

{ stdenv
, fetchPypi
, buildPythonPackage
, persistent
, zope_interface
, transaction
, zope_testrunner
}:
2017-03-15 09:29:27 +00:00
buildPythonPackage rec {
pname = "BTrees";
2018-08-13 07:22:48 +00:00
version = "4.5.1";
2017-03-15 09:29:27 +00:00
buildInputs = [ transaction ];
propagatedBuildInputs = [ persistent zope_interface ];
checkInputs = [ zope_testrunner ];
2017-03-15 09:29:27 +00: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 07:22:48 +00: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;
license = licenses.zpl21;
2017-03-15 09:29:27 +00:00
};
}