summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-21 12:58:53 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 20:04:51 +0100
commit518321f2d8cda36bb1231c261785a66a30c41b31 (patch)
treebcd1e5614b7c01115f4c94092994a3b996cf0021 /gnu/packages
parentf5eaecd697966c33f0c69be5f78da5c5bdb2998e (diff)
gnu: python-spacetrack: Update to 2.0.0.
* gnu/packages/astronomy.scm (python-spacetrack): Update to 2.0.0. [propagated-inputs]: Remove python-filelock-next and python-httpx; add python-filelock and python-httpx2. [native-inputs]: Remove python-respx and python-setuptools; add python-hatchling and python-pytest-httpx2. Relates-to: guix/guix!10702
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/astronomy.scm21
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 6e0b9b2bcdc..94740d4f7e8 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -11194,34 +11194,35 @@ builds on the capabilities of NumPy and MatPlotLib packages.")
11194(define-public python-spacetrack 11194(define-public python-spacetrack
11195 (package 11195 (package
11196 (name "python-spacetrack") 11196 (name "python-spacetrack")
11197 (version "1.4.0") 11197 (version "2.0.0")
11198 (source 11198 (source
11199 (origin 11199 (origin
11200 (method url-fetch) 11200 (method url-fetch)
11201 (uri (pypi-uri "spacetrack" version)) 11201 (uri (pypi-uri "spacetrack" version))
11202 (sha256 11202 (sha256
11203 (base32 "0x2c8gag0h8435a5xzqfpm7sw98s908r40y4xjh9c16yvv1m8jzy")))) 11203 (base32 "005jmv1gqg17n7a5yq8xijkx68sfa99n2496jjcprpjln58sppz7"))))
11204 (build-system pyproject-build-system) 11204 (build-system pyproject-build-system)
11205 (arguments 11205 (arguments
11206 (list 11206 (list
11207 ;; tests: 75 passed, 1 deselected, 19 warnings 11207 ;; tests: 78 passed, 1 deselected, 2 warnings
11208 #:test-flags 11208 #:test-flags
11209 #~(list "--asyncio-mode=auto" 11209 #~(list "--asyncio-mode=auto"
11210 ;; One test fails with assertion not equal. 11210 ;; Test tries accessing
11211 ;; <https://www.space-track.org/basicspacedata/modeldef/class/gp>.
11211 "--deselect=tests/test_aio.py::test_modeldef_not_used_trio"))) 11212 "--deselect=tests/test_aio.py::test_modeldef_not_used_trio")))
11212 (native-inputs 11213 (native-inputs
11213 (list nss-certs-for-test 11214 (list nss-certs-for-test
11215 python-hatchling
11214 python-pytest 11216 python-pytest
11215 python-pytest-asyncio 11217 python-pytest-httpx2
11216 python-respx 11218 python-pytest-asyncio))
11217 python-setuptools))
11218 (propagated-inputs 11219 (propagated-inputs
11219 (list python-filelock-next 11220 (list python-filelock
11220 python-httpx 11221 python-dateutil
11222 python-httpx2
11221 python-logbook 11223 python-logbook
11222 python-outcome 11224 python-outcome
11223 python-platformdirs 11225 python-platformdirs
11224 python-dateutil
11225 python-represent 11226 python-represent
11226 python-rush 11227 python-rush
11227 python-sniffio)) 11228 python-sniffio))