about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-12-15 20:22:57 -0800
committerJon <jonringer@users.noreply.github.com>2019-12-18 22:53:35 -0800
commit146e2a0cedeedcb5c5fa89bb16feefc64899e265 (patch)
tree1028a13a1b9b8836755679718085fa12576f4715
parentea96d2a139bff306842595d611309d9eaa4dc377 (diff)
downloadnixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.tar
nixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.tar.gz
nixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.tar.bz2
nixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.tar.lz
nixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.tar.xz
nixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.tar.zst
nixlib-146e2a0cedeedcb5c5fa89bb16feefc64899e265.zip
python3Packages.bottleneck: 1.2.1 -> 1.3.1
Also gave the expression some love
-rw-r--r--pkgs/development/python-modules/bottleneck/default.nix26
1 files changed, 17 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/bottleneck/default.nix b/pkgs/development/python-modules/bottleneck/default.nix
index 21492dc152cb..f45eea2c5df3 100644
--- a/pkgs/development/python-modules/bottleneck/default.nix
+++ b/pkgs/development/python-modules/bottleneck/default.nix
@@ -1,26 +1,34 @@
-{ buildPythonPackage
-, fetchPypi
+{ lib, buildPythonPackage, fetchPypi
 , nose
-, pytest
 , numpy
+, pytest
 , python
 }:
 
 buildPythonPackage rec {
   pname = "Bottleneck";
-  version = "1.2.1";
+  version = "1.3.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "6efcde5f830aed64feafca0359b51db0e184c72af8ba6675b4a99f263922eb36";
+    sha256 = "0a2a94zahl3kqld2n9dm58fvazz9s52sa16nd8yn5jv20hvqc5a5";
   };
 
-  checkInputs = [ pytest nose ];
   propagatedBuildInputs = [ numpy ];
-  checkPhase = ''
-    py.test -p no:warnings $out/${python.sitePackages}
-  '';
+
   postPatch = ''
     substituteInPlace setup.py --replace "__builtins__.__NUMPY_SETUP__ = False" ""
   '';
+
+  checkInputs = [ pytest nose ];
+  checkPhase = ''
+    py.test -p no:warnings $out/${python.sitePackages}
+  '';
+
+  meta = with lib; {
+    description = "Fast NumPy array functions written in C";
+    homepage = "https://github.com/pydata/bottleneck";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ ];
+  };
 }