diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-04-20 09:14:00 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-04-26 10:26:46 +0200 |
commit | b29e576f6733e6acdedbd03a40670bfa4391dc05 (patch) | |
tree | 42611f42fdccf501632133f28f3f1a4dbc7284af /gnu | |
parent | 51646c5435a868e0d87304d4edfe109b1fe2f545 (diff) | |
download | guix-b29e576f6733e6acdedbd03a40670bfa4391dc05.tar.gz |
gnu: Add python-json-spec.
* gnu/packages/python-xyz.scm (python-json-spec): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d6f738740b..3a9eee2cf7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10347,6 +10347,31 @@ Debian-related files, such as: ;; Modules are either GPLv2+ or GPLv3+. (license license:gpl3+))) +(define-public python-json-spec + (package + (name "python-json-spec") + (version "0.10.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "json-spec" version)) + (sha256 + (base32 + "06dpbsq61ja9r89wpa2pzdii47qh3xri9ajdrgn1awfl102znchb")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pathlib" ,python-pathlib) + ("python-six" ,python-six))) + (native-inputs + `(("python-pytest" ,python-pytest))) + (home-page "http://py.errorist.io/json-spec") + (synopsis + "JSON Schema, JSON Pointer and JSON Reference for Python") + (description + "This Python library implements several JSON specs, like JSON Schema, +JSON Reference and JSON Pointer.") + (license license:bsd-3))) + (define-public python-nbformat (package (name "python-nbformat") |