summary refs log tree commit diff
path: root/pkgs/development/python-modules/uarray/default.nix
blob: 32a87758234261d09485c2305c0881e16e1c8016 (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
45
46
47
48
49
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, matchpy
, numpy
, astunparse
, typing-extensions
, pytestCheckHook
, pytestcov
}:

buildPythonPackage rec {
  pname = "uarray";
  version = "0.8.2";

  src = fetchFromGitHub {
    owner = "Quansight-Labs";
    repo = pname;
    rev = version;
    sha256 = "1x2jp7w2wmn2awyv05xs0frpq0fa0rprwcxyg72wgiss0bnzxnhm";
  };

  patches = [(
    # Fixes a compile error with newer versions of GCC -- should be included
    # in the next release after 0.8.2
    fetchpatch {
      url = "https://github.com/Quansight-Labs/uarray/commit/a2012fc7bb94b3773eb402c6fe1ba1a894ea3d18.patch";
      sha256 = "1qqh407qg5dz6x766mya2bxrk0ffw5h17k478f5kcs53g4dyfc3s";
    }
  )];

  checkInputs = [ pytestCheckHook pytestcov ];
  propagatedBuildInputs = [ matchpy numpy astunparse typing-extensions ];

  # Tests must be run from outside the source directory
  preCheck = ''
    cd $TMP
  '';
  pytestFlagsArray = ["--pyargs" "uarray"];
  pythonImportsCheck = [ "uarray" ];

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