unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 59113@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#59113] [PATCH 1/9] gnu: Add asdf-standard
Date: Mon,  7 Nov 2022 23:06:48 +0000	[thread overview]
Message-ID: <20221107230656.28187-1-sharlatanus@gmail.com> (raw)
In-Reply-To: <20221107230238.27936-1-sharlatanus@gmail.com>

* gnu/packages/astronomy.scm (python-asdf-standard): New variable.
---
 gnu/packages/astronomy.scm | 42 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index dd27f4e530..92a807a9a5 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -73,6 +73,7 @@ (define-module (gnu packages astronomy)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system pyproject)
   #:use-module (guix download)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -1945,6 +1946,47 @@ (define-public python-asdf
 implementation of the ASDF Standard.")
     (license license:bsd-3)))
 
+(define-public python-asdf-standard
+  (package
+    (name "python-asdf-standard")
+    (version "1.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "asdf_standard" version))
+       (sha256
+        (base32
+         "0i7xdjwn5prg2hcnf1zhw57mszc68jjr5sv4rimpzcg7f2dgzn5g"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:phases #~(modify-phases %standard-phases
+                        (add-before 'check 'remove-blocking-tests
+                          (lambda _
+                            ;; Remove tests require python-asdf where
+                            ;; python-asdf require python-asdf-standard,
+                            ;; break circular dependencies.
+                            (for-each delete-file
+                                      (list "tests/test_manifests.py"
+                                            "tests/test_integration.py")))))))
+    (native-inputs (list python-astropy
+                         python-jsonschema-next
+                         python-pypa-build
+                         python-pytest-7.1
+                         python-packaging
+                         python-setuptools-scm))
+    (propagated-inputs (list python-importlib-resources))
+    (home-page "https://asdf-standard.readthedocs.io/")
+    (synopsis "ASDF standard schemas")
+    (description
+     "This package provides Python implementation of @acronym{ASDF, Advanced
+Scientific Data Format} - a proposed next generation interchange format for
+scientific data.  ASDF aims to exist in the same middle ground that made FITS
+so successful, by being a hybrid text and binary format: containing human
+editable metadata for interchange, and raw binary data that is fast to load
+and use.  Unlike FITS, the metadata is highly structured and is designed
+up-front for extensibility.")
+    (license license:bsd-3)))
+
 (define python-asdf-transform-schemas
   (package
     (name "python-asdf-transform-schemas")
-- 
2.38.0





  reply	other threads:[~2022-11-07 23:13 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-07 23:02 [bug#59113] [PATCH 0/9] gnu: gwcs: Fix build, update to 0.18.12 Sharlatan Hellseher
2022-11-07 23:06 ` Sharlatan Hellseher [this message]
2022-11-07 23:06   ` [bug#59113] [PATCH 2/9] gnu: Add asdf-unit-schemas Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 3/9] gnu: Add asdf-fits-schemas Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 4/9] gnu: Add asdf-time-schemas Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 5/9] gnu: asdf-transform-schemas: Update to 0.3.0 Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 6/9] gnu: python-asdf: Update to 2.13.0 Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 7/9] gnu: python-asdf: Sync test disable comment Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 8/9] gnu: asdf-astropy: Update to 0.2.2 Sharlatan Hellseher
2022-11-07 23:06   ` [bug#59113] [PATCH 9/9] gnu: gwcs: Fix build, update to 0.18.2 Sharlatan Hellseher
2022-11-18 22:50 ` [bug#59113] Sharlatan Hellseher
2022-11-20 10:02   ` [bug#59113] [PATCH 0/9] gnu: gwcs: Fix build, update to 0.18.12 Christopher Baines
2022-11-20 18:10     ` Sharlatan Hellseher
2022-11-20 21:18       ` Sharlatan Hellseher
2022-11-20 22:42         ` Sharlatan Hellseher
2022-11-21 14:27       ` bug#59113: " Christopher Baines

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221107230656.28187-1-sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=59113@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).