diff --git a/pkgs/development/python-modules/scikit-bio/default.nix b/pkgs/development/python-modules/scikit-bio/default.nix index d687f32d0a89..1190d875005a 100644 --- a/pkgs/development/python-modules/scikit-bio/default.nix +++ b/pkgs/development/python-modules/scikit-bio/default.nix @@ -5,9 +5,9 @@ fetchFromGitHub, # build-system - setuptools, cython, - oldest-supported-numpy, + numpy, + setuptools, # dependencies array-api-compat, @@ -15,7 +15,6 @@ decorator, h5py, natsort, - numpy, pandas, patsy, requests, @@ -29,20 +28,20 @@ buildPythonPackage (finalAttrs: { pname = "scikit-bio"; - version = "0.7.1.post1"; + version = "0.7.2"; pyproject = true; src = fetchFromGitHub { owner = "scikit-bio"; repo = "scikit-bio"; tag = finalAttrs.version; - hash = "sha256-fnZpLhn2F/KoP3q7WmdaDXeC9i7hduGRkUWlCwwME3Q="; + hash = "sha256-zBOUZukqLhTxKG9BluWB+2zTCx5ALhM1s+YP2itqg9A="; }; build-system = [ - setuptools cython - oldest-supported-numpy + numpy + setuptools ]; dependencies = [ @@ -76,7 +75,7 @@ buildPythonPackage (finalAttrs: { description = "Data structures, algorithms and educational resources for bioinformatics"; homepage = "http://scikit-bio.org/"; downloadPage = "https://github.com/scikit-bio/scikit-bio"; - changelog = "https://github.com/scikit-bio/scikit-bio/blob/${finalAttrs.src.rev}/CHANGELOG.md"; + changelog = "https://github.com/scikit-bio/scikit-bio/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ tomasajt ]; };