gnu: python-h5netcdf: Update to 1.1.0.
* gnu/packages/python-xyz.scm (python-h5netcdf): Update to 1.1.0. [build-system]: Use pyproject-build-system, to simplify package. [description]: Style content and add links to referenced projects. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
1a0dcc2112
commit
0682e7c2e3
1 changed files with 8 additions and 13 deletions
|
@ -1759,21 +1759,14 @@ NetCDF files can also be read and modified. Python-HDF4 is a fork of
|
||||||
(define-public python-h5netcdf
|
(define-public python-h5netcdf
|
||||||
(package
|
(package
|
||||||
(name "python-h5netcdf")
|
(name "python-h5netcdf")
|
||||||
(version "1.0.1")
|
(version "1.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "h5netcdf" version))
|
(uri (pypi-uri "h5netcdf" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1b2dcgf5rwy7pb7hr4prkc5vgcw9qc2was20dmnj90lbrpx08rvp"))))
|
(base32 "0mmzfr6k55zqxxpb64gvdqisak8s1zb2r04yzkmp0wzd7dbknb4k"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
|
||||||
(list #:phases
|
|
||||||
#~(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
|
||||||
(when tests?
|
|
||||||
(invoke "pytest" "-vv" "h5netcdf/tests")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-netcdf4
|
(list python-netcdf4
|
||||||
python-pytest
|
python-pytest
|
||||||
|
@ -1782,9 +1775,11 @@ NetCDF files can also be read and modified. Python-HDF4 is a fork of
|
||||||
(list python-h5py python-packaging))
|
(list python-h5py python-packaging))
|
||||||
(home-page "https://h5netcdf.org")
|
(home-page "https://h5netcdf.org")
|
||||||
(synopsis "Python interface for the netCDF4 file-format based on h5py")
|
(synopsis "Python interface for the netCDF4 file-format based on h5py")
|
||||||
(description "This package provides Python interface for the netCDF4
|
(description "This package provides a Python interface for the netCDF4
|
||||||
file-format that reads and writes local or remote HDF5 files directly via h5py
|
file-format that reads and writes local or remote HDF5 files directly via
|
||||||
or h5pyd, without relying on the Unidata netCDF library")
|
@url{h5py, https://www.h5py.org/} or @url{h5pyd,
|
||||||
|
https://github.com/HDFGroup/h5pyd}, without relying on the Unidata netCDF
|
||||||
|
library.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-h5py
|
(define-public python-h5py
|
||||||
|
|
Reference in a new issue