73 lines
1.2 KiB
Nix
73 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
scikit-build-core,
|
|
setuptools,
|
|
setuptools-scm,
|
|
cmake,
|
|
ninja,
|
|
matchpy,
|
|
numpy,
|
|
astunparse,
|
|
typing-extensions,
|
|
nix-update-script,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "uarray";
|
|
version = "0.9.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Quansight-Labs";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-6dOi7+quWvASl2RHetULK5zixHFJlj/D6667o99ceSs=";
|
|
};
|
|
|
|
build-system = [
|
|
scikit-build-core
|
|
setuptools
|
|
setuptools-scm
|
|
cmake
|
|
ninja
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
dependencies = [
|
|
astunparse
|
|
matchpy
|
|
numpy
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
];
|
|
|
|
# Tests must be run from outside the source directory
|
|
preCheck = ''
|
|
cd $TMP
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"--pyargs"
|
|
"uarray"
|
|
];
|
|
|
|
pythonImportsCheck = [ "uarray" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Universal array library";
|
|
homepage = "https://github.com/Quansight-Labs/uarray";
|
|
license = licenses.bsd0;
|
|
maintainers = [ lib.maintainers.pbsds ];
|
|
};
|
|
}
|