summary refs log tree commit diff
path: root/pkgs/development/python-modules/btrees
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-08-13 09:22:48 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-08-25 07:38:21 +0200
commit75683a6eb87669bf68cdac54d8379dcf7f5548c9 (patch)
treed53e5da57848cf1f534bfe07a818915740a3cbb4 /pkgs/development/python-modules/btrees
parentd962411a3451625e52c024a8d7e0e1e8003e7c81 (diff)
downloadnixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.tar
nixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.tar.gz
nixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.tar.bz2
nixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.tar.lz
nixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.tar.xz
nixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.tar.zst
nixpkgs-75683a6eb87669bf68cdac54d8379dcf7f5548c9.zip
python: BTrees: 4.5.0 -> 4.5.1
Diffstat (limited to 'pkgs/development/python-modules/btrees')
-rw-r--r--pkgs/development/python-modules/btrees/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/btrees/default.nix b/pkgs/development/python-modules/btrees/default.nix
index c031c872da3..c96d305a7f6 100644
--- a/pkgs/development/python-modules/btrees/default.nix
+++ b/pkgs/development/python-modules/btrees/default.nix
@@ -9,7 +9,7 @@
 
 buildPythonPackage rec {
   pname = "BTrees";
-  version = "4.5.0";
+  version = "4.5.1";
 
   buildInputs = [ transaction ];
   propagatedBuildInputs = [ persistent zope_interface ];
@@ -17,7 +17,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "46b02cb69b26a5238db771ea1955b503df73ecf254bb8063af4c61999fc75b5c";
+    sha256 = "dcc096c3cf92efd6b9365951f89118fd30bc209c9af83bf050a28151a9992786";
   };
 
   meta = with stdenv.lib; {