From 0f5175f1c8a81d2559c391bd291e6d7f5fcf1fb2 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 29 Sep 2024 17:05:44 +0200 Subject: [PATCH] python3Packages.numcodecs: 0.12.1 -> 0.13.0 --- .../python-modules/numcodecs/default.nix | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/numcodecs/default.nix b/pkgs/development/python-modules/numcodecs/default.nix index 7f04ae4bf414..b789d8dabeeb 100644 --- a/pkgs/development/python-modules/numcodecs/default.nix +++ b/pkgs/development/python-modules/numcodecs/default.nix @@ -17,33 +17,24 @@ buildPythonPackage rec { pname = "numcodecs"; - version = "0.12.1"; + version = "0.13.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-BdkaQzcz5+7yaNfoDsImoCMtokQolhSo84JpAa7BCY4="; + hash = "sha256-uk+scDbqWgeMev4dTf/rloUIDULxnJwWsS2thmcDqi4="; }; - patches = [ - # https://github.com/zarr-developers/numcodecs/pull/487 - (fetchpatch { - name = "fix-tests.patch"; - url = "https://github.com/zarr-developers/numcodecs/commit/4896680087d3ff1f959401c51cf5aea0fd56554e.patch"; - hash = "sha256-+lMWK5IsNzJ7H2SmLckgxbSSRIIcC7FtGYSBKQtuo+Y="; - }) - ]; - - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm cython py-cpuinfo ]; - propagatedBuildInputs = [ numpy ]; + dependencies = [ numpy ]; optional-dependencies = { msgpack = [ msgpack ];