python312Packages.hdf5plugin: 4.4.0 -> 5.0.0 (#338913)

authored by Peder Bergebakken Sundt and committed by GitHub f0010d7d 8b168624

+10 -3
+10 -3
pkgs/development/python-modules/hdf5plugin/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 h5py, 6 }: 7 8 buildPythonPackage rec { 9 pname = "hdf5plugin"; 10 - version = "4.4.0"; 11 - format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "silx-kit"; 15 repo = "hdf5plugin"; 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-MnqY1PyGzo31H696J9CekiA2rJrUYzUMDC3UJMZaFLA="; 18 }; 19 20 dependencies = [ h5py ]; 21
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + setuptools, 6 + py-cpuinfo, 7 h5py, 8 }: 9 10 buildPythonPackage rec { 11 pname = "hdf5plugin"; 12 + version = "5.0.0"; 13 + pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "silx-kit"; 17 repo = "hdf5plugin"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-6lEU8ZGJKazDqloel5QcaXAbNGzV1fAbAjYC/hFUOdI="; 20 }; 21 + 22 + build-system = [ 23 + setuptools 24 + py-cpuinfo 25 + ]; 26 27 dependencies = [ h5py ]; 28