guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#48784] [PATCH] gnu: python-asdf: Adjust inputs.


From: Vinicius Monego
Subject: [bug#48784] [PATCH] gnu: python-asdf: Adjust inputs.
Date: Tue, 1 Jun 2021 20:26:34 +0000

* gnu/packages/astronomy.scm (python-asdf)[native-inputs]: Remove 
python-semantic-version.
[inputs]: Move python-importlib-resources, python-jsonschema, python-numpy,
python-pyyaml ...
[propagated-inputs]: ... here. Add python-semantic-version.
---
 gnu/packages/astronomy.scm | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 907541d5c8..2bee5cc32f 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6,6 +6,7 @@
 ;;; Copyright © 2020 R Veera Kumar <vkor@vkten.in>
 ;;; Copyright © 2020, 2021 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1099,21 +1100,21 @@ of stand-alone functions and classes.")
      ;; depends on asdf. Disable circular dependence.
      `(#:tests? #f))
     (native-inputs
-     `(("packaging" ,python-packaging)
-       ("semantic-version" ,python-semantic-version)
-       ("setuptools-scm" ,python-setuptools-scm)))
-     (inputs
-      `(("importlib-resources" ,python-importlib-resources)
-        ("jsonschema" ,python-jsonschema)
-        ("numpy" ,python-numpy)
-        ("pyyaml" ,python-pyyaml)))
-     (home-page "https://github.com/asdf-format/asdf";)
-     (synopsis "Python tools to handle ASDF files")
-     (description
-      "The Advanced Scientific Data Format (ASDF) is a next-generation
+     `(("python-packaging" ,python-packaging)
+       ("python-setuptools-scm" ,python-setuptools-scm)))
+    (propagated-inputs
+     `(("python-importlib-resources" ,python-importlib-resources)
+       ("python-jsonschema" ,python-jsonschema)
+       ("python-numpy" ,python-numpy)
+       ("python-pyyaml" ,python-pyyaml)
+       ("python-semantic-version" ,python-semantic-version)))
+    (home-page "https://github.com/asdf-format/asdf";)
+    (synopsis "Python tools to handle ASDF files")
+    (description
+     "The Advanced Scientific Data Format (ASDF) is a next-generation
 interchange format for scientific data.  This package contains the Python
 implementation of the ASDF Standard.")
-     (license license:bsd-3)))
+    (license license:bsd-3)))
 
 (define-public python-astroalign
   (package
-- 
2.31.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]