diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-16 14:23:32 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-16 16:47:45 +0000 |
commit | 4d56a736997125aee6df0cbbb7e9d6aff2766d7c (patch) | |
tree | c66c8acda259bea03c31c5f472678cb186efa3e3 | |
parent | 456f967a5a1717e7564467751422d45572112a11 (diff) | |
download | guix-4d56a736997125aee6df0cbbb7e9d6aff2766d7c.tar guix-4d56a736997125aee6df0cbbb7e9d6aff2766d7c.tar.gz |
gnu: python-ephem: Fix build.
* gnu/packages/astronomy.scm (python-ephem): [native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I1989fb4a6534a53f561850f1cd214c332c02d992
-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 2201ce599d..df2a824beb 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2166,7 +2166,10 @@ code to be greatly simplified.") (sha256 (base32 "0ps2lr6aa477262yw13w3hh0h5rzmywdlji0wbnkxnzrfvmf9lhf")))) (build-system pyproject-build-system) - (native-inputs (list tzdata)) + (native-inputs + (list python-setuptools + python-wheel + tzdata)) (home-page "https://rhodesmill.org/pyephem/") (synopsis "Compute positions of the planets and stars") (description |