about summary refs log tree commit diff
path: root/pkgs/development/python-modules/numpy
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-09-28 10:50:50 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-29 08:57:14 +0200
commit7f831ef05ee61cbd070ed27348005aad3963ad69 (patch)
tree887bcf2f54288d142bdc5fc88c588960d5a2a404 /pkgs/development/python-modules/numpy
parent66b11cecf6c4a239639d0f1fca9e1ce5697bd8ec (diff)
downloadnixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.tar
nixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.tar.gz
nixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.tar.bz2
nixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.tar.lz
nixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.tar.xz
nixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.tar.zst
nixlib-7f831ef05ee61cbd070ed27348005aad3963ad69.zip
python.pkgs.numpy: 1.13.1 -> 1.13.2
Diffstat (limited to 'pkgs/development/python-modules/numpy')
-rw-r--r--pkgs/development/python-modules/numpy/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/numpy/default.nix b/pkgs/development/python-modules/numpy/default.nix
index 19d135fc0e1d..ffb74021d8d8 100644
--- a/pkgs/development/python-modules/numpy/default.nix
+++ b/pkgs/development/python-modules/numpy/default.nix
@@ -1,13 +1,14 @@
-{lib, fetchurl, python, buildPythonPackage, isPy27, isPyPy, gfortran, nose, blas}:
+{lib, fetchPypi, python, buildPythonPackage, isPy27, isPyPy, gfortran, nose, blas}:
 
 buildPythonPackage rec {
   pname = "numpy";
-  version = "1.13.1";
+  version = "1.13.2";
   name = "${pname}-${version}";
 
-  src = fetchurl {
-    url = "mirror://pypi/n/numpy/numpy-${version}.zip";
-    sha256 = "c9b0283776085cb2804efff73e9955ca279ba4edafd58d3ead70b61d209c4fbb";
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "1fmq8923q91xyjf6fngl0n6jlysryyzx06288b5qdvv97mlfpklh";
   };
 
   disabled = isPyPy;