fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
70 lines
1.5 KiB
Nix
70 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 ];
|
|
};
|
|
}
|