python312Packages.uarray: 0.9.0 -> 0.9.1

Diff: https://github.com/Quansight-Labs/uarray/compare/refs/tags/0.9.0...0.9.1
This commit is contained in:
Peder Bergebakken Sundt 2024-11-18 10:31:15 +01:00
parent 04386ac325
commit accaac8bb2

View File

@ -11,20 +11,21 @@
numpy, numpy,
astunparse, astunparse,
typing-extensions, typing-extensions,
nix-update-script,
pytestCheckHook, pytestCheckHook,
pytest-cov-stub, pytest-cov-stub,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "uarray"; pname = "uarray";
version = "0.9.0"; version = "0.9.1";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Quansight-Labs"; owner = "Quansight-Labs";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-q9lMU/xA+G2x38yZy3DxCpXTEmg1lZhZ8GFIHDIKE24="; hash = "sha256-6dOi7+quWvASl2RHetULK5zixHFJlj/D6667o99ceSs=";
}; };
build-system = [ build-system = [
@ -61,6 +62,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "uarray" ]; pythonImportsCheck = [ "uarray" ];
passthru.updateScript = nix-update-script { };
meta = with lib; { meta = with lib; {
description = "Universal array library"; description = "Universal array library";
homepage = "https://github.com/Quansight-Labs/uarray"; homepage = "https://github.com/Quansight-Labs/uarray";