gnu: python-ginga: Update to 5.0.1.
* gnu/packages/astronomy.scm (python-ginga): Update to 5.0.1. [arguments] <#:phases>: Add 'relax-requirements phase. [propagated-inputs]: Add opencv, python-exif-read python-packaging, python-pyyaml, and python-tomli. [native-inputs]: Add python-pytest-astropy-header. Change-Id: I314bbd9a037b134a03f5a4a174ab878e9523e4b6master
parent
ff0a6988f8
commit
1968ad4036
|
@ -707,31 +707,45 @@ series in Python.")
|
||||||
(define-public python-ginga
|
(define-public python-ginga
|
||||||
(package
|
(package
|
||||||
(name "python-ginga")
|
(name "python-ginga")
|
||||||
(version "5.0.0")
|
(version "5.0.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "ginga" version))
|
(uri (pypi-uri "ginga" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1kydi6qqsscgsa55fa2za35vr5j8xjn09lfbnb5ajr8yxdgm4n3y"))))
|
(base32 "1zw93487a0ilkb5w5qjgrdnavxlmdmjp6c2wyc1wp8qahby9c0xa"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'relax-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.cfg"
|
||||||
|
;; packaging>=23.1
|
||||||
|
((">=23.1") ">=21.3")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list ;;python-exifread ; optional, not packed yet in Guix
|
(list opencv
|
||||||
python-astropy
|
python-astropy
|
||||||
python-astroquery
|
python-astroquery
|
||||||
python-dateutil
|
python-dateutil
|
||||||
|
python-exif-read
|
||||||
|
python-fitsio
|
||||||
python-magic
|
python-magic
|
||||||
python-matplotlib
|
python-matplotlib
|
||||||
python-fitsio
|
|
||||||
python-numpy
|
python-numpy
|
||||||
|
python-packaging
|
||||||
python-photutils
|
python-photutils
|
||||||
python-pillow
|
python-pillow
|
||||||
|
python-pyyaml
|
||||||
python-qtpy
|
python-qtpy
|
||||||
python-scipy))
|
python-scipy
|
||||||
|
python-tomli))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-attrs
|
(list python-attrs
|
||||||
python-docutils
|
python-docutils
|
||||||
python-pytest-astropy
|
python-pytest-astropy
|
||||||
|
python-pytest-astropy-header
|
||||||
python-semantic-version
|
python-semantic-version
|
||||||
python-tornado))
|
python-tornado))
|
||||||
(home-page "https://ejeschke.github.io/ginga/")
|
(home-page "https://ejeschke.github.io/ginga/")
|
||||||
|
|
Reference in New Issue