pythonPackages.numcodecs: build with gcc8

This commit is contained in:
Franz Pletz 2019-11-07 01:04:17 +01:00
parent cf824d6096
commit f25479114f
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,7 @@
, msgpack
, pytest
, python
, gcc8
}:
buildPythonPackage rec {
@ -21,6 +22,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
setuptools_scm
cython
gcc8
];
propagatedBuildInputs = [

View file

@ -4075,7 +4075,9 @@ in {
numba = callPackage ../development/python-modules/numba { };
numcodecs = callPackage ../development/python-modules/numcodecs { };
numcodecs = callPackage ../development/python-modules/numcodecs {
inherit (pkgs) gcc8;
};
numexpr = callPackage ../development/python-modules/numexpr { };