pythonPackages.BTrees: 4.1.4 -> 4.3.1

This commit is contained in:
Jörg Thalheim
2017-03-15 09:29:27 +00:00
committed by Maksim Bronsky
parent 97f26ee39a
commit 70322d8b87
6 changed files with 72 additions and 561 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, persistent, zope_interface, transaction }:
buildPythonPackage rec {
pname = "BTrees";
version = "4.3.1";
name = "${pname}-${version}";
propagatedBuildInputs = [ persistent zope_interface transaction ];
src = fetchPypi {
inherit pname version;
sha256 = "15as34f9sa4nnd62nnjkik2jd4rg1byp0i4kwaqwdpv0ab9vfr95";
};
meta = with stdenv.lib; {
description = "Scalable persistent components";
homepage = http://packages.python.org/BTrees;
license = licenses.zpt21;
};
}