python3Packages.scipy: 1.6.0 -> 1.6.1

This commit is contained in:
Robert T. McGibbon 2021-02-17 22:55:22 -05:00 committed by Frederik Rietdijk
parent 4c0670dace
commit 3974d96160
1 changed files with 6 additions and 5 deletions

View File

@ -9,11 +9,11 @@ let
}); });
in buildPythonPackage rec { in buildPythonPackage rec {
pname = "scipy"; pname = "scipy";
version = "1.6.0"; version = "1.6.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0rh5b1rwdcvvagld8vpxnpaibszy1skpx39a0fwzd5gx5pwcjvfb"; sha256 = "048vd4c843xaq45yk3kn491gvqnvhp2i9rxhg671ddlh923fpz64";
}; };
checkInputs = [ nose pytest ]; checkInputs = [ nose pytest ];
@ -53,9 +53,10 @@ in buildPythonPackage rec {
SCIPY_USE_G77_ABI_WRAPPER = 1; SCIPY_USE_G77_ABI_WRAPPER = 1;
meta = { meta = with lib; {
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering. "; description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering";
homepage = "https://www.scipy.org/"; homepage = "https://www.scipy.org/";
maintainers = with lib.maintainers; [ fridh ]; license = licenses.bsd3;
maintainers = [ maintainers.fridh ];
}; };
} }