about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/uarray/default.nix
blob: fad2dee2d165a7c24e7225f57fd4f046705968a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, buildPythonPackage
, fetchPypi
, matchpy
, numpy
, astunparse
, typing-extensions
, black
, pytest
, pytestcov
, numba
, nbval
, python
, isPy37
}:

buildPythonPackage rec {
  pname = "uarray";
  version = "0.4";
  format = "flit";
  # will have support soon see
  # https://github.com/Quansight-Labs/uarray/pull/64
  disabled = isPy37;

  src = fetchPypi {
    inherit pname version;
    sha256 = "4ec88f477d803a914d58fdf83aeedfb1986305355775cf55525348c62cce9aa4";
  };

  checkInputs = [ pytest nbval pytestcov numba ];
  propagatedBuildInputs = [ matchpy numpy astunparse typing-extensions black ];

  checkPhase = ''
    ${python.interpreter} extract_readme_tests.py
    pytest
  '';

  meta = with lib; {
    description = "Universal array library";
    homepage = https://github.com/Quansight-Labs/uarray;
    license = licenses.bsd0;
    maintainers = [ maintainers.costrouc ];
  };
}