mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-jsonschema: Update to 4.23.0.
* gnu/packages/python-xyz.scm (python-jsonschema): Update to 4.23.0. [arguments]<phases>: Remove 'patch-pyproject phase. [native-inputs]: Add python-pip. Change-Id: I20b7b72ee66982c23a134caabe267cdccbdd5196
This commit is contained in:
parent
3bfea206eb
commit
f881b16ab7
1 changed files with 9 additions and 11 deletions
|
@ -6018,30 +6018,28 @@ and convert DDL to BigQuery JSON schema.")
|
||||||
(define-public python-jsonschema
|
(define-public python-jsonschema
|
||||||
(package
|
(package
|
||||||
(name "python-jsonschema")
|
(name "python-jsonschema")
|
||||||
(version "4.22.0")
|
(version "4.23.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "jsonschema" version))
|
(uri (pypi-uri "jsonschema" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1dx2c7vgsqas61mj00b6ix75cvax5s32qmchz6d12darlhsd88jv"))))
|
(base32 "1i3b4sckkc3v8vckqa11xbrj695qzrzsfzrkclra6lb3ybz9f56p"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-pyproject
|
|
||||||
(lambda _
|
|
||||||
;; The build system does not like this.
|
|
||||||
(substitute* "pyproject.toml"
|
|
||||||
((" \"Topic :: File Formats.*") ""))))
|
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "JSON_SCHEMA_TEST_SUITE" "json"))))))
|
(setenv "JSON_SCHEMA_TEST_SUITE" "json"))))))
|
||||||
(native-inputs (list python-hatchling
|
(native-inputs
|
||||||
python-hatch-fancy-pypi-readme
|
(list python-hatchling
|
||||||
python-hatch-vcs
|
python-hatch-fancy-pypi-readme
|
||||||
python-pytest))
|
python-hatch-vcs
|
||||||
|
;; For <tests/test_cli.py::TestCLIIntegration::test_license>.
|
||||||
|
python-pip
|
||||||
|
python-pytest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-attrs
|
(list python-attrs
|
||||||
python-fqdn
|
python-fqdn
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue