mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
pythonPackages.uarray: init at 0.4
This commit is contained in:
parent
a6dc1123e0
commit
8b6b45c742
44
pkgs/development/python-modules/uarray/default.nix
Normal file
44
pkgs/development/python-modules/uarray/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -3961,6 +3961,8 @@ in {
|
||||
|
||||
ua-parser = callPackage ../development/python-modules/ua-parser { };
|
||||
|
||||
uarray = callPackage ../development/python-modules/uarray { };
|
||||
|
||||
ukpostcodeparser = callPackage ../development/python-modules/ukpostcodeparser { };
|
||||
|
||||
umemcache = callPackage ../development/python-modules/umemcache {};
|
||||
|
Loading…
Reference in New Issue
Block a user