python312Packages.uarray: 0.8.2 -> 0.8.8

Diff: https://github.com/Quansight-Labs/uarray/compare/0.8.2...0.8.8
This commit is contained in:
Peder Bergebakken Sundt 2024-04-18 11:57:52 +02:00
parent 8541bf7486
commit 19777c0e96
1 changed files with 6 additions and 12 deletions

View File

@ -2,6 +2,8 @@
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, setuptools
, setuptools-scm
, matchpy
, numpy
, astunparse
@ -12,25 +14,17 @@
buildPythonPackage rec {
pname = "uarray";
version = "0.8.2";
format = "setuptools";
version = "0.8.8";
pyproject = true;
src = fetchFromGitHub {
owner = "Quansight-Labs";
repo = pname;
rev = version;
sha256 = "1x2jp7w2wmn2awyv05xs0frpq0fa0rprwcxyg72wgiss0bnzxnhm";
hash = "sha256-wTKqOw64b+/kdZpSYLwCJATOuo807BWCtVHB4pH58fY=";
};
patches = [(
# Fixes a compile error with newer versions of GCC -- should be included
# in the next release after 0.8.2
fetchpatch {
url = "https://github.com/Quansight-Labs/uarray/commit/a2012fc7bb94b3773eb402c6fe1ba1a894ea3d18.patch";
sha256 = "1qqh407qg5dz6x766mya2bxrk0ffw5h17k478f5kcs53g4dyfc3s";
}
)];
nativeBuildInputs = [ setuptools setuptools-scm ];
nativeCheckInputs = [ pytestCheckHook pytest-cov ];
propagatedBuildInputs = [ matchpy numpy astunparse typing-extensions ];