about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-09-12 17:30:50 +0200
committerGitHub <noreply@github.com>2021-09-12 17:30:50 +0200
commit1cd236279f76befd0f6726fba2350ff4bad5106f (patch)
tree0c931cb2ef0e7a9e41f39ea35d1bfe32dc22e403 /pkgs
parent2bcde293a6d502a1bab4f0a73b2d85459e6812ad (diff)
parentba1b9152c367785618c05f5a8aa04be540e89d35 (diff)
Merge pull request #136883 from r-ryantm/auto-update/python3.8-numcodecs
python38Packages.numcodecs: 0.9.0 -> 0.9.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/numcodecs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/numcodecs/default.nix b/pkgs/development/python-modules/numcodecs/default.nix
index 26e1d73041845..04e4cd77baf22 100644
--- a/pkgs/development/python-modules/numcodecs/default.nix
+++ b/pkgs/development/python-modules/numcodecs/default.nix
@@ -13,12 +13,12 @@
 
 buildPythonPackage rec {
   pname = "numcodecs";
-  version = "0.9.0";
+  version = "0.9.1";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "3c23803671a3d920efa175af5828870bdff60ba2a3fcbf1d5b48bb81d68219c6";
+    sha256 = "35adbcc746b95e3ac92e949a161811f5aa2602b9eb1ef241b5ea6f09bb220997";
   };
 
   nativeBuildInputs = [
@@ -49,7 +49,7 @@ buildPythonPackage rec {
   ];
 
   meta = with lib;{
-    homepage = "https://github.com/alimanfoo/numcodecs";
+    homepage = "https://github.com/zarr-developers/numcodecs";
     license = licenses.mit;
     description = "Buffer compression and transformation codecs for use in data storage and communication applications";
     maintainers = [ maintainers.costrouc ];