From accaac8bb26fd7c1ed2e9a76fea588aa3f74050b Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Mon, 18 Nov 2024 10:31:15 +0100 Subject: [PATCH] python312Packages.uarray: 0.9.0 -> 0.9.1 Diff: https://github.com/Quansight-Labs/uarray/compare/refs/tags/0.9.0...0.9.1 --- pkgs/development/python-modules/uarray/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/uarray/default.nix b/pkgs/development/python-modules/uarray/default.nix index 777bfd3c6fb2..97a3d0a403ea 100644 --- a/pkgs/development/python-modules/uarray/default.nix +++ b/pkgs/development/python-modules/uarray/default.nix @@ -11,20 +11,21 @@ numpy, astunparse, typing-extensions, + nix-update-script, pytestCheckHook, pytest-cov-stub, }: buildPythonPackage rec { pname = "uarray"; - version = "0.9.0"; + version = "0.9.1"; pyproject = true; src = fetchFromGitHub { owner = "Quansight-Labs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-q9lMU/xA+G2x38yZy3DxCpXTEmg1lZhZ8GFIHDIKE24="; + hash = "sha256-6dOi7+quWvASl2RHetULK5zixHFJlj/D6667o99ceSs="; }; build-system = [ @@ -61,6 +62,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "uarray" ]; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Universal array library"; homepage = "https://github.com/Quansight-Labs/uarray";