~ruther/guix-local

8e7c4d8df91b56807ccf7940a42c7fc1438de6e8 — Sharlatan Hellseher 1 year, 5 months ago d9bbc3c
gnu: python-jsonschema-specifications: Update to 2024.10.1.

* gnu/packages/python-xyz.scm (python-jsonschema-specifications):
Update to 2024.10.1.
[arguments]<phases>: Remove 'patch-pyproject as build system started
liking it.

Change-Id: Idf2ac2f92734682751ac78ccf7000820ad141263
1 files changed, 8 insertions(+), 14 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +8 -14
@@ 6123,27 6123,21 @@ dereferencing accessor layer.")
(define-public python-jsonschema-specifications
  (package
    (name "python-jsonschema-specifications")
    (version "2023.12.1")
    (version "2024.10.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "jsonschema_specifications" version))
       (sha256
        (base32 "1k348xkq45jx13kmv32ls6k4qvjq3ywd4q0i7zamw3z7nf3ng9s8"))))
        (base32 "0wp2g90jsaa48g1v0n6m43ywhh9cj1ig19q25lay334m74vbhf0g"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #: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-importlib-resources
                             python-referencing-bootstrap))
    (native-inputs
     (list python-hatchling python-hatch-vcs python-pytest))
     (list python-hatch-vcs
           python-hatchling
           python-pytest))
    (propagated-inputs
     (list python-importlib-resources
           python-referencing-bootstrap))
    (home-page "https://github.com/python-jsonschema/jsonschema-specifications")
    (synopsis
     "JSON Schema meta-schemas and vocabularies, exposed as a Registry")