From 201a8cd67599ff06f1c7b3dbd0a0cdfddd2bf46c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 21 Nov 2024 19:32:43 +0000 Subject: gnu: python-stsynphot: Update to 1.4.0. * gnu/packages/astronomy.scm (python-stsynphot): Update to 1.4.0. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I9155f517358ecf651a47fe48a676202a2c19bb2f --- gnu/packages/astronomy.scm | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index da12d28269..7d2b176002 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5211,13 +5211,13 @@ implementing calibration pipeline software.") (define-public python-stsynphot (package (name "python-stsynphot") - (version "1.3.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "stsynphot" version)) - (sha256 - (base32 - "15m3vy39mc7rh1mrxs8d2bs0bx5vv632m6wg8n15fqjzhadqy7j5")))) + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "stsynphot" version)) + (sha256 + (base32 "02xaglg1kv3mk6gqjcs1283mmy9b42fgsga8g2z8768lkgwmmg9j")))) (build-system pyproject-build-system) (arguments (list @@ -5226,16 +5226,20 @@ implementing calibration pipeline software.") ;; Failed to load Vega spectrum from ;; /grp/redcat/trds/calspec/alpha_lyr_stis_010.fits; #:tests? #f)) - (propagated-inputs (list python-astropy - python-beautifulsoup4 - python-matplotlib - python-numpy - python-scipy - python-synphot)) - (native-inputs (list python-pytest - python-pytest-astropy - python-pytest-astropy-header - python-setuptools-scm)) + (native-inputs + (list python-pytest + python-pytest-astropy + python-pytest-astropy-header + python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs + (list python-astropy + python-beautifulsoup4 + python-matplotlib + python-numpy + python-scipy + python-synphot)) (home-page "https://github.com/spacetelescope/stsynphot_refactor") (synopsis "Synthetic photometry using Astropy for HST and JWST") (description -- cgit v1.2.3 '/guix/log/gnu/packages/mate.scm?id=bb118f20fe6581a4acbd3799ed31ab0d21e72e78&showmsg=1'>Expand)Author 2021-04-25gnu: xfce, mate: Propagate 'font-dejavu'....Fixes <https://bugs.gnu.org/47713>. Reported by bo0od <bo0od@riseup.net>. This ensures applications such as IceCat can properly text (numbers in the case of IceCat). * gnu/packages/enlightenment.scm (enlightenment)[propagated-inputs]: Add FONT-DEJAVU. * gnu/packages/mate.scm (mate)[propagated-inputs]: New field. * gnu/packages/xfce.scm (xfce)[propagated-inputs]: New field. Ludovic Courtès 2021-03-22gnu: mate-panel: Add missing inputs for Wayland support....* gnu/packages/mate.scm (mate-panel)[inputs]: Add gtk-layer-shell and wayland. Léo Le Bouter 2021-03-17gnu: Use autoconf instead of autoconf-wrapper when possible....This should reduce confusion on when to use the "autoconf" package and when to use "autoconf-wrapper" instead in package definitions. Fixes <https://bugs.gnu.org/46564>. * gnu/packages/autotools.scm (autoconf-wrapper): advise to use the "autoconf" package instead where possible. * gnu/packages/game-development.scm (tsukundere)[native-inputs]: use "autoconf" instead of "autoconf-wrapper". * gnu/packages/gimp.scm (glimpse)[native-inputs]: likewise. (gimp-resynthesizer)[native-inputs]: add comment on why "autoconf-wrapper" is used. * gnu/packages/gnunet.scm (gnunet)[native-inputs]: use "autoconf" instead of "autoconf-wrapper". * gnu/packages/gnupg.scm (signing-party)[native-inputs]: add comment on why "autoconf-wrapper" is used. * gnu/packages/guile-xyz.scm (guile-bash,guile-filesystem,guile-ics,guile-udev)[native-inputs]: use "autoconf" instead of "autoconf-wrapper". * gnu/packages/libevent.scm (libuv)[native-inputs]: indicates "autoconf-wrapper" needs to be replaced with "autoconf" on core-updates. * gnu/packages/logging.scm (glog)[native-inputs]: use "autoconf" instead of "autoconf-wrapper". * gnu/packages/mail.scm (libetpan)[native-inputs]: likewise. * gnu/packages/mate.scm (mate-icon-theme-faenza)[native-inputs]: add comment on why "autoconf-wrapper" is used. (mate-screensaver)[native-inputs]: use "autoconf" instead of "autoconf-wrapper". * gnu/packages/package-management.scm (guix)[native-inputs]: likewise. * gnu/packages/sawfish.scm (librep)[native-inputs]: likewise. * gnu/packages/video.scm (motion)[native-inputs]: likewise. * gnu/packages/zile.scm (zile)[native-inputs]: likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos