diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-03 20:53:57 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-03 21:26:05 +0100 |
| commit | 4451725c60fd65c8d7ad5a7daeca1e625019a108 (patch) | |
| tree | d477e595931911437039c084d743a30e2e101609 /gnu | |
| parent | 0ded9cf362b1cd77cc49a370ee8338ac4edb29d1 (diff) | |
gnu: python-colossus: Fix commit.
The package was added in 90949015077fd230f9121a4e7c28c77de13491d7, where
commit was mismatched with base32 hash. The hash
0lz4n4i4frgsdspmka4pk6q4zq6j1z37g5xx7pr3xzgl9qfiiad2 is valid and
belongs to the source commit
<https://bitbucket.org/bdiemer/colossus/commits/e51408a3eaffef073da1df767160cb2441177cc0>.
Hash 0mfkgfp6f0ay6kndh7vk8l0g2ijr32k55x3pmj15lp9kd8k3ln4r was left from
the package template based on python-coolest.
* gnu/packages/astronomy.scm (python-colossus) [source]: Fix commit.
[arguments] <phases>: Add 'pre-check.
Change-Id: I6ee67e750ba65f881b6ab508d6094e4da7b8054d
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/astronomy.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 62198b162dc..2fd2c248bf0 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm | |||
| @@ -3043,7 +3043,7 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and | |||
| 3043 | (define-public python-colossus | 3043 | (define-public python-colossus |
| 3044 | ;; There is no source distribution in PyPI and no version tags, use the | 3044 | ;; There is no source distribution in PyPI and no version tags, use the |
| 3045 | ;; commit pointing to the version 1.3.8. | 3045 | ;; commit pointing to the version 1.3.8. |
| 3046 | (let ((commit "0lz4n4i4frgsdspmka4pk6q4zq6j1z37g5xx7pr3xzgl9qfiiad2") | 3046 | (let ((commit "e51408a3eaffef073da1df767160cb2441177cc0") |
| 3047 | (revision "0")) | 3047 | (revision "0")) |
| 3048 | (package | 3048 | (package |
| 3049 | (name "python-colossus") | 3049 | (name "python-colossus") |
| @@ -3056,14 +3056,19 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and | |||
| 3056 | (commit commit))) | 3056 | (commit commit))) |
| 3057 | (file-name (git-file-name name version)) | 3057 | (file-name (git-file-name name version)) |
| 3058 | (sha256 | 3058 | (sha256 |
| 3059 | (base32 "0mfkgfp6f0ay6kndh7vk8l0g2ijr32k55x3pmj15lp9kd8k3ln4r")))) | 3059 | (base32 "0lz4n4i4frgsdspmka4pk6q4zq6j1z37g5xx7pr3xzgl9qfiiad2")))) |
| 3060 | (build-system pyproject-build-system) | 3060 | (build-system pyproject-build-system) |
| 3061 | (arguments | 3061 | (arguments |
| 3062 | (list | 3062 | (list |
| 3063 | #:test-flags | 3063 | #:test-flags |
| 3064 | ;; TODO: Skip test files requiring not packaged lenstronomy. | 3064 | ;; TODO: Skip test files requiring not packaged lenstronomy. |
| 3065 | #~(list "--ignore=test/api/profiles/light_test.py" | 3065 | #~(list "--ignore=test/api/profiles/light_test.py" |
| 3066 | "--ignore=test/api/profiles/mass_test.py"))) | 3066 | "--ignore=test/api/profiles/mass_test.py") |
| 3067 | #:phases | ||
| 3068 | #~(modify-phases %standard-phases | ||
| 3069 | (add-before 'check 'pre-check | ||
| 3070 | (lambda _ | ||
| 3071 | (setenv "HOME" "/tmp")))))) | ||
| 3067 | (native-inputs | 3072 | (native-inputs |
| 3068 | (list python-astropy-minimal | 3073 | (list python-astropy-minimal |
| 3069 | python-jsonpickle | 3074 | python-jsonpickle |
