Skip to content

Commit 7f831ef

Browse files
committedSep 29, 2017
python.pkgs.numpy: 1.13.1 -> 1.13.2
1 parent 66b11ce commit 7f831ef

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
 

‎pkgs/development/python-modules/numpy/default.nix

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
{lib, fetchurl, python, buildPythonPackage, isPy27, isPyPy, gfortran, nose, blas}:
1+
{lib, fetchPypi, python, buildPythonPackage, isPy27, isPyPy, gfortran, nose, blas}:
22

33
buildPythonPackage rec {
44
pname = "numpy";
5-
version = "1.13.1";
5+
version = "1.13.2";
66
name = "${pname}-${version}";
77

8-
src = fetchurl {
9-
url = "mirror://pypi/n/numpy/numpy-${version}.zip";
10-
sha256 = "c9b0283776085cb2804efff73e9955ca279ba4edafd58d3ead70b61d209c4fbb";
8+
src = fetchPypi {
9+
inherit pname version;
10+
extension = "zip";
11+
sha256 = "1fmq8923q91xyjf6fngl0n6jlysryyzx06288b5qdvv97mlfpklh";
1112
};
1213

1314
disabled = isPyPy;

0 commit comments

Comments
 (0)
Please sign in to comment.