diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-08-05 16:59:28 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-08-08 23:02:34 +0100 |
| commit | ca89f632ea3c45b3c209d55f160a9767b1727779 (patch) | |
| tree | 66e52942639db9f0ab09a83d6971ee87910bb7dc | |
| parent | a528b5f26620c36bc67ad6571ca7350203a2c448 (diff) | |
gnu: python-scikit-bio: Update to 0.7.3.
* gnu/packages/bioinformatics.scm (python-scikit-bio): Update to 0.7.3.
[source]{patches}: Add bugfix patch for pandas@3.0 incompatibilities.
[native-inputs]: Add python-dateutil, python-matplotlib, python-numpy,
python-patsy, python-responses, python-statsmodels.
[home-page]: Refresh it.
Relates-to: guix/guix!10394
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index ec65c2cb4a0..b17b5c01c89 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm | |||
| @@ -6948,13 +6948,25 @@ and record oriented data modeling and the Semantic Web.") | |||
| 6948 | (define-public python-scikit-bio | 6948 | (define-public python-scikit-bio |
| 6949 | (package | 6949 | (package |
| 6950 | (name "python-scikit-bio") | 6950 | (name "python-scikit-bio") |
| 6951 | (version "0.7.1.post1") | 6951 | (version "0.7.3") |
| 6952 | (source (origin | 6952 | (source |
| 6953 | (method url-fetch) | 6953 | (origin |
| 6954 | (uri (pypi-uri "scikit_bio" version)) | 6954 | (method git-fetch) |
| 6955 | (sha256 | 6955 | (uri (git-reference |
| 6956 | (base32 | 6956 | (url "https://github.com/scikit-bio/scikit-bio") |
| 6957 | "15czagyilqxj68ivqi9slnz2brs0nn4a18swx8vjhj8inwc29nfb")))) | 6957 | (commit version))) |
| 6958 | (file-name (git-file-name name version)) | ||
| 6959 | (sha256 | ||
| 6960 | (base32 "1bg50d57jnzbkixcc3c23wrm8mf1za2nf0i3dy4n5zzizsk6vjpd")) | ||
| 6961 | (patches | ||
| 6962 | (list | ||
| 6963 | (origin | ||
| 6964 | (method url-fetch) | ||
| 6965 | (uri | ||
| 6966 | (string-append "https://github.com/scikit-bio/scikit-bio/commit/" | ||
| 6967 | "6d8d7d15af5485f5ad555d31db99808468f72831.patch")) | ||
| 6968 | (sha256 | ||
| 6969 | (base32 "1l28ckz7n4gyrsg5ls2xf1qd19cv03jf7bjrn3y9y6jjn71by45w"))))))) | ||
| 6958 | (build-system pyproject-build-system) | 6970 | (build-system pyproject-build-system) |
| 6959 | (arguments | 6971 | (arguments |
| 6960 | (list | 6972 | (list |
| @@ -6968,8 +6980,14 @@ and record oriented data modeling and the Semantic Web.") | |||
| 6968 | (delete-file-recursively "skbio")))))) | 6980 | (delete-file-recursively "skbio")))))) |
| 6969 | (native-inputs | 6981 | (native-inputs |
| 6970 | (list python-cython | 6982 | (list python-cython |
| 6983 | python-dateutil | ||
| 6984 | python-matplotlib | ||
| 6985 | python-numpy | ||
| 6986 | python-patsy | ||
| 6971 | python-pytest | 6987 | python-pytest |
| 6972 | python-setuptools)) | 6988 | python-responses |
| 6989 | python-setuptools | ||
| 6990 | python-statsmodels)) | ||
| 6973 | (propagated-inputs | 6991 | (propagated-inputs |
| 6974 | (list python-array-api-compat | 6992 | (list python-array-api-compat |
| 6975 | python-biom-format | 6993 | python-biom-format |
| @@ -6982,7 +7000,7 @@ and record oriented data modeling and the Semantic Web.") | |||
| 6982 | python-requests | 7000 | python-requests |
| 6983 | python-scipy | 7001 | python-scipy |
| 6984 | python-statsmodels)) | 7002 | python-statsmodels)) |
| 6985 | (home-page "https://scikit-bio.org") | 7003 | (home-page "https://scikit.bio") |
| 6986 | (synopsis "Data structures, algorithms and educational resources for bioinformatics") | 7004 | (synopsis "Data structures, algorithms and educational resources for bioinformatics") |
| 6987 | (description | 7005 | (description |
| 6988 | "This package provides data structures, algorithms and educational | 7006 | "This package provides data structures, algorithms and educational |
