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

commit a97d0f406c0673ac687a26762550f056abe5cdd9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 7 19:59:37 2026 +0100

    gnu: python-jsonschema: Add python-rfc3987-syntax.
    
    Without python-rfc3987-syntax in scope, packages depending on
    python-jsonschema started failing on sanity-check:
    
        DistributionNotFound(Requirement.parse('rfc3987-syntax>=1.1.0;
        extra == "format-nongpl"'), {'jsonschema'})
    
    * gnu/packages/python-xyz.scm (python-jsonschema):
    [propagated-inputs]: Add python-rfc3987-syntax.
---
 gnu/packages/python-xyz.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ff543540ef..d565569584 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9418,7 +9418,7 @@ and convert DDL to BigQuery JSON schema.")
     (build-system pyproject-build-system)
     (arguments
      (list
-      ;; tests: 7744 passed, 71 skipped
+      ;; tests: 7762 passed, 53 skipped
       #:phases
       #~(modify-phases %standard-phases
           (add-before 'check 'pre-check
@@ -9442,6 +9442,7 @@ and convert DDL to BigQuery JSON schema.")
            python-jsonpointer
            python-rfc3339-validator
            python-rfc3986-validator
+           python-rfc3987-syntax        ;sanity-check fails without this
            python-uri-template
            python-webcolors))
     (home-page "https://github.com/Julian/jsonschema";)

Reply via email to