diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-15 18:39:45 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-24 22:24:38 +0000 |
commit | a57fa5a8ced14180ed30591706f5ffd4007fa203 (patch) | |
tree | fde8679c8975a140c3be602d7ebf399cfe780360 | |
parent | fb4293c4ecfd8af2e8500f1054a3a2f5cc1d35a2 (diff) | |
download | guix-a57fa5a8ced14180ed30591706f5ffd4007fa203.tar.gz guix-a57fa5a8ced14180ed30591706f5ffd4007fa203.zip |
gnu: python-synphot: Enable more options.
* gnu/packages/astronomy.scm (python-synphot) [propagated-inputs]: Add
python-dust-extinction and python-specutils. Sort alphabetically.
[native-inputs]: Add python-semantic-version.
Change-Id: If4dbcf2765508d7c7e2b7580193367ed2d038b6f
-rw-r--r-- | gnu/packages/astronomy.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 3ed72df07f..2d0116e793 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -3945,14 +3945,15 @@ datetime object.") (format port "[pytest] python_files = test_*.py")))))))) (propagated-inputs - (list ;; python-dust-extinction ; XXX: Not packed yet, optional. - ;; python-specutils ; XXX: Not packed yet, optional. - python-astropy + (list python-astropy + python-dust-extinction python-numpy - python-scipy)) + python-scipy + python-specutils )) (native-inputs (list python-pytest python-pytest-astropy + python-semantic-version python-setuptools-scm)) (home-page "https://github.com/spacetelescope/synphot_refactor") (synopsis "Synthetic photometry using Astropy") |