diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-02 21:55:27 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-30 10:30:47 +0100 |
commit | 3469162bca1329d212c4b681fe713549c31ade78 (patch) | |
tree | dbf047a6b78f632daaf1f9e7213afcb543478e2c | |
parent | 82c9302be0069084d494da5a2dff9c31151ba263 (diff) | |
download | guix-3469162bca1329d212c4b681fe713549c31ade78.tar.gz guix-3469162bca1329d212c4b681fe713549c31ade78.zip |
gnu: Add python-ads.
* gnu/packages/astronomy.scm (python-ads): New variable.
Change-Id: Ia4ae54c90cd77ff15c8171a992ddc1ce823557e8
-rw-r--r-- | gnu/packages/astronomy.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index fa832ee93f..c25e49e411 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -89,6 +89,7 @@ #:use-module (gnu packages tls) #:use-module (gnu packages version-control) #:use-module (gnu packages video) + #:use-module (gnu packages web) #:use-module (gnu packages wxwidgets) #:use-module (gnu packages xiph) #:use-module (gnu packages xml) @@ -677,6 +678,31 @@ measures the quality of images. The generated PSF models can be used for model-fitting photometry or morphological analyses.") (license license:gpl3+))) +(define-public python-ads + (package + (name "python-ads") + (version "0.12.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ads" version)) + (sha256 + (base32 "18aizbsmhwz99flz8n101mi0n0lk3m3qqzfvmxrmjwqvydfypjml")))) + (build-system pyproject-build-system) + (native-inputs + (list python-httpretty)) + (propagated-inputs + (list python-mock + python-requests + python-six + python-werkzeug)) + (home-page "http://www.github.com/andycasey/ads/") + (synopsis "Python client to NASA's Astrophysics Data System") + (description + "This package provdies a Python Module to Interact with NASA's +@acronym{Astrophysics Data System,ADS} that Doesn't Suckā¢.") + (license license:expat))) + (define-public python-aplpy (package (name "python-aplpy") |