guix-commits
[Top][All Lists]
Advanced

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

65/361: gnu: Add python-referencing.


From: guix-commits
Subject: 65/361: gnu: Add python-referencing.
Date: Fri, 22 Nov 2024 06:00:13 -0500 (EST)

andreas pushed a commit to branch python-team
in repository guix.

commit d29b76bafc6eda131c62386fcc3386c7c35b6e8d
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 17:01:27 2024 +0200

    gnu: Add python-referencing.
    
    * gnu/packages/python-xyz.scm (python-referencing,
    python-referencing-bootstrap): New variables.
    
    Change-Id: I16b9d32644204a72c46a2d51ebf3771d90cd099a
---
 gnu/packages/python-xyz.scm | 51 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 88bfd22493..9a8a8d8ee1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33980,6 +33980,57 @@ YAML.  It takes care of defaults, overrides, type 
checking, command-line
 integration, human-readable errors, and standard OS-specific locations.")
     (license license:expat)))
 
+(define-public python-referencing
+  (package
+    (name "python-referencing")
+    (version "0.35.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "referencing" version))
+       (sha256
+        (base32 "0g3hvzz6ci6dcf701q7ilr4b7vw3fw428kqp4nj35dn8lqj23d15"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      '(list "--pyargs" "referencing/tests")
+      #:phases
+      '(modify-phases %standard-phases
+         (add-after 'unpack 'patch-pyproject
+           (lambda _
+             ;; The build system does not like this.
+             (substitute* "pyproject.toml"
+               (("  \"Topic :: File Formats.*") "")))))))
+    (propagated-inputs (list python-attrs python-rpds-py))
+    (native-inputs
+     (list python-hatchling
+           python-hatch-vcs
+           python-jsonschema
+           python-pytest
+           python-pytest-subtests))
+    (home-page "https://github.com/python-jsonschema/referencing";)
+    (synopsis "JSON Referencing + Python")
+    (description "This package provides an implementation-agnostic
+implementation of JSON reference resolution.")
+    (license license:expat)))
+
+(define-public python-referencing-bootstrap
+  (package
+    (inherit python-referencing)
+    (name "python-referencing-bootstrap")
+    (arguments
+     (list
+      #:tests? #false
+      #:phases
+      '(modify-phases %standard-phases
+         (add-after 'unpack 'patch-pyproject
+           (lambda _
+             ;; The build system does not like this.
+             (substitute* "pyproject.toml"
+               (("  \"Topic :: File Formats.*") "")))))))
+    (native-inputs (list python-hatchling python-hatch-vcs))))
+
 (define-public python-reflink
   (package
     (name "python-reflink")



reply via email to

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