13 buildPythonPackage rec {
17 src = fetchFromGitHub {
18 owner = "Quansight-Labs";
21 sha256 = "1x2jp7w2wmn2awyv05xs0frpq0fa0rprwcxyg72wgiss0bnzxnhm";
25 # Fixes a compile error with newer versions of GCC -- should be included
26 # in the next release after 0.8.2
28 url = "https://github.com/Quansight-Labs/uarray/commit/a2012fc7bb94b3773eb402c6fe1ba1a894ea3d18.patch";
29 sha256 = "1qqh407qg5dz6x766mya2bxrk0ffw5h17k478f5kcs53g4dyfc3s";
33 nativeCheckInputs = [ pytestCheckHook pytest-cov ];
34 propagatedBuildInputs = [ matchpy numpy astunparse typing-extensions ];
36 # Tests must be run from outside the source directory
40 pytestFlagsArray = ["--pyargs" "uarray"];
41 pythonImportsCheck = [ "uarray" ];
44 description = "Universal array library";
45 homepage = "https://github.com/Quansight-Labs/uarray";
46 license = licenses.bsd0;