Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / blis / default.nix
blob8b465bcebdc11c57ad2c500f4d5653fd46e98492
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
5 , cython_0
6 , hypothesis
7 , numpy
8 , pytestCheckHook
9 , pythonOlder
10 , gitUpdater
13 buildPythonPackage rec {
14   pname = "blis";
15   version = "0.7.11";
16   pyproject = true;
18   disabled = pythonOlder "3.7";
20   src = fetchFromGitHub {
21     owner = "explosion";
22     repo = "cython-blis";
23     rev = "refs/tags/v${version}";
24     hash = "sha256-p8pzGZc5OiiGTvXULDgzsBC3jIhovTKUq3RtPnQ/+to=";
25   };
27   postPatch = ''
28     # See https://github.com/numpy/numpy/issues/21079
29     # has no functional difference as the name is only used in log output
30     substituteInPlace blis/benchmark.py \
31       --replace 'numpy.__config__.blas_ilp64_opt_info["libraries"]' '["dummy"]'
32   '';
34   preCheck = ''
35     # remove src module, so tests use the installed module instead
36     rm -rf ./blis
37   '';
39   nativeBuildInputs = [
40     setuptools
41     cython_0
42   ];
44   propagatedBuildInputs = [
45     numpy
46   ];
48   nativeCheckInputs = [
49     hypothesis
50     pytestCheckHook
51   ];
53   pythonImportsCheck = [
54     "blis"
55   ];
57   passthru = {
58     # Do not update to BLIS 0.9.x until the following issue is resolved:
59     # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935
60     skipBulkUpdate = true;
61     updateScript = gitUpdater {
62       rev-prefix = "v";
63       ignoredVersions = "0\.9\..*";
64     };
65   };
67   meta = with lib; {
68     description = "BLAS-like linear algebra library";
69     homepage = "https://github.com/explosion/cython-blis";
70     license = licenses.bsd3;
71     maintainers = with maintainers; [ nickcao ];
72   };