mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-json-spec: Update to 0.12.0.
* gnu/packages/python-xyz.scm (python-json-spec): Update to 0.12.0. [source]: Switch to git-fetch providing tests. [build-system]: Use pyproject. [propagated-inputs]: Remove python-importlib-metadata. [native-inputs]: Add python-poetry-core. Change-Id: Ie6fdb0a96b164b89f07a2fa5ff7f153439449d54
This commit is contained in:
parent
0175a31f8f
commit
297f7422d4
1 changed files with 16 additions and 15 deletions
|
@ -19030,25 +19030,26 @@ Debian-related files, such as:
|
||||||
(define-public python-json-spec
|
(define-public python-json-spec
|
||||||
(package
|
(package
|
||||||
(name "python-json-spec")
|
(name "python-json-spec")
|
||||||
(version "0.11.0")
|
(version "0.12.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch) ;no tests in PyPI archive
|
||||||
(uri (pypi-uri "json_spec" version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/johnnoone/json-spec")
|
||||||
(base32
|
(commit version)))
|
||||||
"0fwxirzxx5s9l0lwnjl6ki39xw1fsjm0vr6cm67ws27fkmcxcry7"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system python-build-system)
|
(sha256
|
||||||
(propagated-inputs
|
(base32 "14lzvpfi8vpwn2hsizljcyiiywfc1fssj0hh079jxw4xwjkm9328"))))
|
||||||
(list python-importlib-metadata
|
(build-system pyproject-build-system)
|
||||||
python-termcolor))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest
|
||||||
|
python-poetry-core))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-termcolor)) ;for the CLI
|
||||||
(home-page "https://json-spec.readthedocs.io/")
|
(home-page "https://json-spec.readthedocs.io/")
|
||||||
(synopsis
|
(synopsis "JSON Schema, JSON Pointer and JSON Reference for Python")
|
||||||
"JSON Schema, JSON Pointer and JSON Reference for Python")
|
|
||||||
(description
|
(description
|
||||||
"This Python library implements several JSON specs, like JSON Schema,
|
"This Python library implements several JSON specs, like JSON Schema,
|
||||||
JSON Reference and JSON Pointer.")
|
JSON Reference and JSON Pointer.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue