pythonPackages.numba: 0.29.0 -> 0.30.1
This commit is contained in:
parent
9ac753323d
commit
8a4730642f
|
@ -14,12 +14,12 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "0.29.0";
|
version = "0.30.1";
|
||||||
name = "numba-${version}";
|
name = "numba-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://pypi/n/numba/${name}.tar.gz";
|
url = "mirror://pypi/n/numba/${name}.tar.gz";
|
||||||
sha256 = "00ae294f3fb3a99e8f0a9f568213cebed26675bacc9c6f8d2e025b6d564e460d";
|
sha256 = "66e6254b3002f448fd212c5df4c8a69964dff9b9f315fb733e3c95e7e2b6c8fd";
|
||||||
};
|
};
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
||||||
|
@ -28,8 +28,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
# Copy test script into $out and run the test suite.
|
# Copy test script into $out and run the test suite.
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
cp runtests.py $out/${python.sitePackages}/numba/runtests.py
|
python -m numba.runtests
|
||||||
${python.interpreter} $out/${python.sitePackages}/numba/runtests.py
|
|
||||||
'';
|
'';
|
||||||
# ImportError: cannot import name '_typeconv'
|
# ImportError: cannot import name '_typeconv'
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -40,4 +39,4 @@ buildPythonPackage rec {
|
||||||
description = "Compiling Python code using LLVM";
|
description = "Compiling Python code using LLVM";
|
||||||
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue