diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-29 15:05:44 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:09 +0100 |
| commit | 72c525035d989e3d00e80ad24c22f2855071932b (patch) | |
| tree | 1b47da80b6ba5c482f4003b87903def0ce0ef7dd | |
| parent | 803fce145c10e8cc42405d6b092a71ccc796acef (diff) | |
gnu: python-sgp4: Fix tests.
* gnu/packages/astronomy.scm (python-sgp4):
[arguments] <test-backend>: Use 'custom.
[native-inputs]: Remove python-wheel, and python-setuptools-next, add
python-setuptools.
Change-Id: If113cf8bafffdae385aa54f4497665918f681270
| -rw-r--r-- | gnu/packages/astronomy.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index c99ad69c26..65bdf3b0be 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -7097,15 +7097,10 @@ library with bug fixtures.") (base32 "0x06mxdmk2rsbp7ymjvvbj8pwkf4y2w6g8p0znw9zmi5rinxr7p1")))) (build-system pyproject-build-system) (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "python" "-m" "sgp4.tests"))))))) + (list #:test-backend #~'custom + #:test-flags #~(list "-m" "sgp4.tests"))) (native-inputs - (list python-setuptools-next)) + (list python-setuptools)) (propagated-inputs (list python-numpy)) (home-page "https://github.com/brandon-rhodes/python-sgp4") |
