diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-17 09:25:21 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-17 22:35:01 +0100 |
commit | a457e174fbe9ca459eacb7160bf5e953400bb287 (patch) | |
tree | 62f9c9259f9ebf07560ba2408cd5901463331255 /gnu/packages | |
parent | 5bc1fff8f1d1bd68be3183e64b06c8b85f60d96b (diff) | |
download | guix-a457e174fbe9ca459eacb7160bf5e953400bb287.tar.gz guix-a457e174fbe9ca459eacb7160bf5e953400bb287.zip |
gnu: python-skyfield: Fix tests.
* gnu/packages/astronomy.scm (python-skyfield): [native-inputs]: Add
nss-certs-for-test.
Change-Id: Icbc77778b6095a14d6b5ecb18232a09a2fa6ab25
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/astronomy.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 1a25681c1e..c31aaa26b6 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -38,6 +38,7 @@ #:use-module (gnu packages bash) #:use-module (gnu packages bison) #:use-module (gnu packages boost) + #:use-module (gnu packages certs) #:use-module (gnu packages check) #:use-module (gnu packages cmake) #:use-module (gnu packages compression) @@ -5796,7 +5797,9 @@ pipelines.") (with-directory-excursion "ci" (apply invoke "python" test-flags)))))))) (native-inputs - (list python-assay python-pandas)) + (list nss-certs-for-test + python-assay + python-pandas)) (propagated-inputs (list python-certifi python-jplephem |