diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-28 13:51:24 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:58 +0100 |
| commit | c35dbc1f80651502850969cf7cc8cd08cd59703c (patch) | |
| tree | e94734c758c2708b22b89765151060dce24f60af /gnu/packages/python-xyz.scm | |
| parent | 8c8d02588147272938195da03e8743329f39bb09 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8be6c03266..2eb4e15d0a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19006,25 +19006,26 @@ Debian-related files, such as: (define-public python-json-spec (package (name "python-json-spec") - (version "0.11.0") + (version "0.12.0") (source - (origin - (method url-fetch) - (uri (pypi-uri "json_spec" version)) - (sha256 - (base32 - "0fwxirzxx5s9l0lwnjl6ki39xw1fsjm0vr6cm67ws27fkmcxcry7")))) - (build-system python-build-system) - (propagated-inputs - (list python-importlib-metadata - python-termcolor)) + (origin + (method git-fetch) ;no tests in PyPI archive + (uri (git-reference + (url "https://github.com/johnnoone/json-spec") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14lzvpfi8vpwn2hsizljcyiiywfc1fssj0hh079jxw4xwjkm9328")))) + (build-system pyproject-build-system) (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/") - (synopsis - "JSON Schema, JSON Pointer and JSON Reference for Python") + (synopsis "JSON Schema, JSON Pointer and JSON Reference for Python") (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.") (license license:bsd-3))) |
