python3Packages.cupy: 13.6.0 -> 14.0.1

Diff: https://github.com/cupy/cupy/compare/v13.6.0...v14.0.1

Changelog: https://github.com/cupy/cupy/releases/tag/v14.0.1
This commit is contained in:
Gaetan Lepage 2026-02-28 10:44:34 +00:00
parent 72762bccf8
commit f54a1182d6

View file

@ -1,17 +1,24 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
cython,
fastrlock,
numpy,
pytestCheckHook,
mock,
setuptools,
# nativeBuildInputs
cudaPackages,
addDriverRunpath,
symlinkJoin,
addDriverRunpath,
# dependencies
numpy,
cuda-pathfinder,
# tests
pytest-mock,
pytestCheckHook,
}:
let
@ -39,8 +46,7 @@ let
libcurand
libcusolver
libcusparse
# NOTE: libcusparse_lt is too new for CuPy, so we must do without.
# libcusparse_lt
libcusparse_lt # cusparseLt.h
]
);
cudatoolkit-joined = symlinkJoin {
@ -49,19 +55,26 @@ let
outpaths ++ lib.concatMap (outpath: lib.map (output: outpath.${output}) outpath.outputs) outpaths;
};
in
buildPythonPackage.override { stdenv = cudaPackages.backendStdenv; } rec {
buildPythonPackage.override { stdenv = cudaPackages.backendStdenv; } (finalAttrs: {
pname = "cupy";
version = "13.6.0";
version = "14.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "cupy";
repo = "cupy";
tag = "v${version}";
hash = "sha256-nU3VL0MSCN+mI5m7C5sKAjBSL6ybM6YAk5lJiIDY0ck=";
tag = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-TaEJ0BveUCXCRrNq9L49Tfbu0334+cANcVm5qnSOE1Q=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail \
"Cython>=3.1,<3.2" \
"Cython"
'';
env = {
LDFLAGS = toString [
# Fake libcuda.so (the real one is deployed impurely)
@ -83,7 +96,6 @@ buildPythonPackage.override { stdenv = cudaPackages.backendStdenv; } rec {
build-system = [
cython
fastrlock
setuptools
];
@ -100,13 +112,13 @@ buildPythonPackage.override { stdenv = cudaPackages.backendStdenv; } rec {
];
dependencies = [
fastrlock
cuda-pathfinder
numpy
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
mock
];
# Won't work with the GPU, whose drivers won't be accessible from the build
@ -124,7 +136,7 @@ buildPythonPackage.override { stdenv = cudaPackages.backendStdenv; } rec {
meta = {
description = "NumPy-compatible matrix library accelerated by CUDA";
homepage = "https://cupy.chainer.org/";
changelog = "https://github.com/cupy/cupy/releases/tag/${src.tag}";
changelog = "https://github.com/cupy/cupy/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
platforms = [
"aarch64-linux"
@ -132,4 +144,4 @@ buildPythonPackage.override { stdenv = cudaPackages.backendStdenv; } rec {
];
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})