Merge pull request #248370 from khaneliman/numba

python310Packages.numba: unstable-2023-08-02 -> unstable-2023-08-11
This commit is contained in:
Doron Behar 2023-08-12 16:16:34 +00:00 committed by GitHub
commit c9dea90f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ let
in buildPythonPackage rec {
# Using an untagged version, with numpy 1.25 support, when it's released
# also drop the versioneer patch in postPatch
version = "unstable-2023-08-02";
version = "unstable-2023-08-11";
pname = "numba";
format = "setuptools";
disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
@ -37,7 +37,7 @@ in buildPythonPackage rec {
src = fetchFromGitHub {
owner = "numba";
repo = "numba";
rev = "fcf94205335dcc6135d2e19c07bbef968d13610d";
rev = "6f0c5060a69656319ab0bae1d8bb89484cd5631f";
# Upstream uses .gitattributes to inject information about the revision
# hash and the refname into `numba/_version.py`, see:
#
@ -50,7 +50,7 @@ in buildPythonPackage rec {
# use `forceFetchGit = true;`.` If in the future we'll observe the hash
# changes too often, we can always use forceFetchGit, and inject the
# relevant strings ourselves, using `sed` commands, in extraPostFetch.
hash = "sha256-Wm1sV4uS/Xkz1BkT2xNmwgBZS0X8YziC6jlbfolXGB8=";
hash = "sha256-34qEn/i2X6Xu1cjuiRrmrm/HryNoN+Am4A4pJ90srAE=";
};
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1";
@ -131,6 +131,7 @@ in buildPythonPackage rec {
description = "Compiling Python code using LLVM";
homepage = "https://numba.pydata.org/";
license = licenses.bsd2;
mainProgram = "numba";
maintainers = with maintainers; [ fridh ];
};
}