diff options
Diffstat (limited to 'gnu/packages/python-science.scm')
| -rw-r--r-- | gnu/packages/python-science.scm | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 6aca7052c30..392044eadc1 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm | |||
| @@ -5114,14 +5114,24 @@ NumPy and does not depend on C++ ROOT.") | |||
| 5114 | (define-public python-upsetplot | 5114 | (define-public python-upsetplot |
| 5115 | (package | 5115 | (package |
| 5116 | (name "python-upsetplot") | 5116 | (name "python-upsetplot") |
| 5117 | (version "0.9.0") | 5117 | ;; Latest release is incompatible with Pandas 3 and NumPy 2.4. |
| 5118 | (properties '((commit . "e9603da19d321c047f88d404f687e82be415e52c") | ||
| 5119 | (revision . "1"))) | ||
| 5120 | (version (git-version "0.9.0" | ||
| 5121 | (assoc-ref properties 'revision) | ||
| 5122 | (assoc-ref properties 'commit))) | ||
| 5118 | (source | 5123 | (source |
| 5119 | (origin | 5124 | (origin |
| 5120 | (method url-fetch) | 5125 | (method git-fetch) |
| 5121 | (uri (pypi-uri "UpSetPlot" version)) | 5126 | (uri (git-reference |
| 5127 | ;; Using a fork of https://github.com/jnothman/UpSetPlot | ||
| 5128 | ;; original source that is updated for Pandas 3 compatibility, | ||
| 5129 | ;; see <https://github.com/kevinpetersavage/UpSetPlot/pull/1>. | ||
| 5130 | (url "https://github.com/kevinpetersavage/UpSetPlot") | ||
| 5131 | (commit (assoc-ref properties 'commit)))) | ||
| 5132 | (file-name (git-file-name name version)) | ||
| 5122 | (sha256 | 5133 | (sha256 |
| 5123 | (base32 | 5134 | (base32 "155g0x4z0zdfri528spws5mad4d24vadsc827iy92f5br7vbf3j3")))) |
| 5124 | "14l5gcj88cclkj1mf74bcy1pxq1hgsiy27fa3vxrsk32ik1nmdwm")))) | ||
| 5125 | (build-system pyproject-build-system) | 5135 | (build-system pyproject-build-system) |
| 5126 | (propagated-inputs | 5136 | (propagated-inputs |
| 5127 | (list python-matplotlib python-pandas)) | 5137 | (list python-matplotlib python-pandas)) |
