summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-21 11:41:28 +0100
committerGitHub <noreply@github.com>2023-01-21 11:41:28 +0100
commit6330f679b22faf8dfbd18e99884e14bca9029ed8 (patch)
treef4b833a59dd71b8e16f0f5d475b5d488fbb6b9ab
parentabb32825d9ab180861b9cc9c00bef303a830a409 (diff)
downloadnixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.tar
nixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.tar.gz
nixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.tar.bz2
nixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.tar.lz
nixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.tar.xz
nixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.tar.zst
nixpkgs-6330f679b22faf8dfbd18e99884e14bca9029ed8.zip
python310Packages.cupy: add changelog to meta
-rw-r--r--pkgs/development/python-modules/cupy/default.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/cupy/default.nix b/pkgs/development/python-modules/cupy/default.nix
index 79f1e108460..56e7bf59519 100644
--- a/pkgs/development/python-modules/cupy/default.nix
+++ b/pkgs/development/python-modules/cupy/default.nix
@@ -1,6 +1,15 @@
-{ lib, buildPythonPackage
-, fetchPypi, isPy3k, cython
-, fastrlock, numpy, six, wheel, pytestCheckHook, mock, setuptools
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isPy3k
+, cython
+, fastrlock
+, numpy
+, six
+, wheel
+, pytestCheckHook
+, mock
+, setuptools
 , cudaPackages
 , addOpenGLRunpath
 }:
@@ -14,7 +23,7 @@ in buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-S8hWW97SLMibIQ/Z+0il1TFvMHAeErsjhSpgMU4fn24=";
+    hash = "sha256-S8hWW97SLMibIQ/Z+0il1TFvMHAeErsjhSpgMU4fn24=";
   };
 
   # See https://docs.cupy.dev/en/v10.2.0/reference/environment.html. Seting both
@@ -67,6 +76,7 @@ in buildPythonPackage rec {
   meta = with lib; {
     description = "A NumPy-compatible matrix library accelerated by CUDA";
     homepage = "https://cupy.chainer.org/";
+    changelog = "https://github.com/cupy/cupy/releases/tag/v${version}";
     license = licenses.mit;
     platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ hyphon81 ];