me
/
guix
Archived
1
0
Fork 0

gnu: python-stdatamodels: Update packages style.

* gnu/packages/astronomy.scm (python-stdatamodels): Update indentation
to improve readability of the package.
[description]: Add TexInfo styling bits.

Signed-off-by: Christopher Baines <mail@cbaines.net>
Sharlatan Hellseher 2023-10-09 00:40:18 +01:00 committed by Christopher Baines
parent 514aec4356
commit 46bdcee9c8
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 29 additions and 26 deletions

View File

@ -2618,40 +2618,43 @@ image processing functions: @code{xyxymatch}, @code{geomap}.")
(package
(name "python-stdatamodels")
(version "1.8.3")
(source (origin
(method url-fetch)
(uri (pypi-uri "stdatamodels" version))
(sha256
(base32
"0265xa9nrp6qp1z7v9kmnd3c8jc0dad2vzin657clk3rrsj2qll5"))))
(source
(origin
(method url-fetch)
(uri (pypi-uri "stdatamodels" version))
(sha256
(base32 "0265xa9nrp6qp1z7v9kmnd3c8jc0dad2vzin657clk3rrsj2qll5"))))
(build-system pyproject-build-system)
(arguments
(list
;; Disable tests requiring access to CRDS servers to download ~500MiB
;; of data.
;; Disable tests requiring access to CRDS servers to download ~500MiB of
;; data.
#:test-flags #~(list "-k" "not test_crds_selectors_vs_datamodel")
#:phases #~(modify-phases %standard-phases
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp"))))))
(propagated-inputs (list python-asdf
python-asdf-astropy
python-astropy
python-numpy
python-psutil))
(native-inputs (list python-crds
python-pytest
python-pytest-doctestplus
python-scipy
python-semantic-version
python-setuptools-scm))
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp"))))))
(propagated-inputs
(list python-asdf
python-asdf-astropy
python-astropy
python-numpy
python-psutil))
(native-inputs
(list python-crds
python-pytest
python-pytest-doctestplus
python-scipy
python-semantic-version
python-setuptools-scm))
(home-page "https://github.com/spacetelescope/stdatamodels")
(synopsis
"Core support for DataModel classes used in calibration pipelines")
(description
"Provides DataModel, which is the base class for data models implemented in
the @acronym{JWST, James Webb Space Telescope} and @acronym{Roman, Nancy Grace
Roman Space Telescope} calibration software.")
"Provides @code{DataModel}, which is the base class for data models
implemented in the @acronym{JWST, James Webb Space Telescope} and
@acronym{Roman, Nancy Grace Roman Space Telescope} calibration software.")
(license license:bsd-3)))
(define-public python-stpipe