summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-09 16:53:20 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:59 +0100
commit6882a6669116c3a107a9bfa84c9e0764769ef73b (patch)
tree73a209c6e66925aa1283db0b493a58fd33ec6b1d /gnu/packages/python-xyz.scm
parent4a622189ec46ba0d997e0225a04df4a4f75e7cf3 (diff)
gnu: python-fastjsonschema: Update to 2.21.1.
* gnu/packages/python-xyz.scm (python-fastjsonschema): Update to 2.21.1. [native-inputs]: Remove python-colorama, python-pytest-cache, and python-wheel. Change-Id: I059d6792b2d9573a05140f2657f86427914347bb
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index eef04ca171..23e3bde154 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19064,7 +19064,7 @@ significantly better performance.")
(define-public python-fastjsonschema
(package
(name "python-fastjsonschema")
- (version "2.20.0")
+ (version "2.21.1")
(source
(origin
(method git-fetch) ; no tests in PyPI release
@@ -19073,17 +19073,14 @@ significantly better performance.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0aqj7hf1fgana9hh9la475wiyivcr46fra1bvigp00805g14k599"))))
+ (base32 "1j7dc8hlvrlhzkiv0vqzd6shhjaf14g9v3zlfn7x17j04c1g3iz7"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-colorama
- python-json-spec
+ (list python-json-spec
python-jsonschema
python-pytest
python-pytest-benchmark
- python-pytest-cache
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/horejsek/python-fastjsonschema")
(synopsis "Fast Python implementation of JSON schema")
(description