Skip to content

Commit

Permalink
python.pkgs.numpy: 1.13.1 -> 1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Sep 29, 2017
1 parent 66b11ce commit 7f831ef
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions 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;
Expand Down

0 comments on commit 7f831ef

Please sign in to comment.