From 7b2747c81d52dd4727cc642df2ebbce485c7e204 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:23 +0000 Subject: gnu: Add python-asdf-astropy. * gnu/packages/astronomy.scm (python-asdf-astropy): New variable. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 9df0934d08..ace926051a 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1555,6 +1555,48 @@ coordinates tags. Users should not need to install this directly; instead, install an implementation package such as asdf-astropy.") (license license:bsd-3))) +(define-public python-asdf-astropy + (package + (name "python-asdf-astropy") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asdf_astropy" version)) + (sha256 + (base32 "0bzgah7gskvnz6jcrzipvzixv8k2jzjkskqwxngzwp4nxgjbcvi4")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) + (native-inputs + (list python-coverage + python-h5py + python-matplotlib + python-pandas + python-pytest-astropy + python-scipy + python-semantic-version + python-setuptools-scm)) + (propagated-inputs + (list python-asdf + python-asdf-coordinates-schemas + python-asdf-transform-schemas + python-astropy + python-numpy + python-packaging)) + (home-page "https://github.com/astropy/asdf-astropy") + (synopsis "ASDF serialization support for astropy") + (description + "This package includes plugins that provide ASDF serialization support for +Astropy objects.") + (license license:bsd-3))) + (define-public python-astroalign (package (name "python-astroalign") -- cgit v1.2.3 84'>tests/build-utils.scm
AgeCommit message (Expand)Author
2019-11-26tests: Avoid unnecessary use of 'mock'....Ludovic Courtès
2019-11-26tests: Avoid (catch 'srfi-34 …) form....Ludovic Courtès
2019-06-17utils: Add 'invoke/quiet'....Ludovic Courtès
2019-03-23Merge branch 'staging' into core-updatesMarius Bakke
2019-03-16booloader: Add 'invoke/quiet'....Ludovic Courtès
2019-03-16tests: Add 'with-environment-variable'....Ludovic Courtès
2019-02-08guix: Add wrap-script....Ricardo Wurmus
2016-09-07utils: 'wrap-program' produces only one wrapper file....Ludovic Courtès
2016-09-02tests: Test 'wrap-program' without building a package....Ludovic Courtès
2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin