nixpkgs/pkgs/development/python-modules/blis/default.nix
Martin Weinelt 528354e66c
python312Packages.cython: 0.29.36 -> 3.0.9
Folds the cython_3 attribute into the primary cython attribute and
migrates all packages from the versioned attribute.

The old version will be provided through the cython_0 attribute in an
effort to phase it out.
2024-03-27 18:35:05 +01:00

74 lines
1.5 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, cython_0
, hypothesis
, numpy
, pytestCheckHook
, pythonOlder
, gitUpdater
}:
buildPythonPackage rec {
pname = "blis";
version = "0.7.11";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "explosion";
repo = "cython-blis";
rev = "refs/tags/v${version}";
hash = "sha256-p8pzGZc5OiiGTvXULDgzsBC3jIhovTKUq3RtPnQ/+to=";
};
postPatch = ''
# See https://github.com/numpy/numpy/issues/21079
# has no functional difference as the name is only used in log output
substituteInPlace blis/benchmark.py \
--replace 'numpy.__config__.blas_ilp64_opt_info["libraries"]' '["dummy"]'
'';
preCheck = ''
# remove src module, so tests use the installed module instead
rm -rf ./blis
'';
nativeBuildInputs = [
setuptools
cython_0
];
propagatedBuildInputs = [
numpy
];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [
"blis"
];
passthru = {
# Do not update to BLIS 0.9.x until the following issue is resolved:
# https://github.com/explosion/thinc/issues/771#issuecomment-1255825935
skipBulkUpdate = true;
updateScript = gitUpdater {
rev-prefix = "v";
ignoredVersions = "0\.9\..*";
};
};
meta = with lib; {
description = "BLAS-like linear algebra library";
homepage = "https://github.com/explosion/cython-blis";
license = licenses.bsd3;
maintainers = with maintainers; [ nickcao ];
};
}