2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-15 00:24:47 +00:00
nixpkgs/pkgs/development/python-modules/scipy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
2.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchPypi
, python
2022-11-04 11:19:43 +00:00
, pythonOlder
, buildPythonPackage
2021-08-26 19:32:44 +00:00
, cython
, gfortran
, meson-python
, pkg-config
2021-08-26 19:32:44 +00:00
, pythran
, wheel
, nose
, pytest
, pytest-xdist
, numpy
, pybind11
2023-01-07 07:03:50 +00:00
, pooch
2022-11-04 11:19:43 +00:00
, libxcrypt
}:
2019-12-19 18:31:15 +00:00
buildPythonPackage rec {
pname = "scipy";
2023-01-07 07:03:50 +00:00
version = "1.10.1";
format = "pyproject";
2018-04-04 17:51:03 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-LPnfuAp7RYm6TEDOdYiYbW1c68VFfK0sKID2vC1C86U=";
};
2023-01-07 07:03:50 +00:00
patches = [
# These tests require internet connection, currently impossible to disable
# them otherwise, see:
# https://github.com/scipy/scipy/pull/17965
./disable-datasets-tests.patch
];
nativeBuildInputs = [ cython gfortran meson-python pythran pkg-config wheel ];
2021-08-26 19:32:44 +00:00
2022-11-04 11:19:43 +00:00
buildInputs = [
numpy.blas
pybind11
2023-01-07 07:03:50 +00:00
pooch
2022-11-04 11:19:43 +00:00
] ++ lib.optionals (pythonOlder "3.9") [
libxcrypt
];
2021-08-26 19:32:44 +00:00
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [ nose pytest pytest-xdist ];
2021-08-26 19:32:44 +00:00
doCheck = !(stdenv.isx86_64 && stdenv.isDarwin);
preConfigure = ''
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
export NPY_NUM_BUILD_JOBS=$NIX_BUILD_CORES
'';
# disable stackprotector on aarch64-darwin for now
#
# build error:
#
# /private/tmp/nix-build-python3.9-scipy-1.6.3.drv-0/ccDEsw5U.s:109:15: error: index must be an integer in range [-256, 255].
#
# ldr x0, [x0, ___stack_chk_guard];momd
#
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
checkPhase = ''
runHook preCheck
pushd "$out"
export OMP_NUM_THREADS=$(( $NIX_BUILD_CORES / 4 ))
${python.interpreter} -c "import scipy; scipy.test('fast', verbose=10, parallel=$NIX_BUILD_CORES)"
popd
runHook postCheck
'';
requiredSystemFeatures = [ "big-parallel" ]; # the tests need lots of CPU time
passthru = {
blas = numpy.blas;
};
setupPyBuildFlags = [ "--fcompiler='gnu95'" ];
SCIPY_USE_G77_ABI_WRAPPER = 1;
2021-02-18 03:55:22 +00:00
meta = with lib; {
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering";
homepage = "https://www.scipy.org/";
2021-02-18 03:55:22 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.fridh ];
};
}