mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add python-geopack.
* gnu/packages/geo.scm (python-geopack): New variable. Change-Id: I674b09030684dd0d9f94b4b87cf96aeea983ee89 Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
fc08d71486
commit
b12ab191b8
1 changed files with 26 additions and 0 deletions
|
@ -959,6 +959,32 @@ (define-public python-fiona
|
|||
pyproj, Rtree, and Shapely.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-geopack
|
||||
(package
|
||||
(name "python-geopack")
|
||||
(version "1.0.10")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "geopack" version))
|
||||
(sha256
|
||||
(base32 "0mryjp7m4h99qlpvnn40s81sygr73qcv8rkmjp9pcli1gz829kjf"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; XXX Reported upstream <https://github.com/tsssss/geopack/issues/21>.
|
||||
#:tests? #f))
|
||||
(native-inputs
|
||||
(list python-pytest))
|
||||
(propagated-inputs
|
||||
(list python-numpy python-scipy))
|
||||
(home-page "https://github.com/tsssss/geopack")
|
||||
(synopsis "Python version of geopack and Tsyganenko models")
|
||||
(description
|
||||
"Python version of geopack and Tsyganenko models, compatible with
|
||||
@code{geopack05} and @code{geopack08}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-geopandas
|
||||
(package
|
||||
(name "python-geopandas")
|
||||
|
|
Loading…
Reference in a new issue