sharlatan pushed a commit to branch python-team
in repository guix.
commit 603592460fd49cf4c142b2768fa256e0a7168bb0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 17 22:51:41 2024 +0000
gnu: python-itsdangerous: Update to 2.2.0.
* gnu/packages/python-xyz.scm (python-itsdangerous): Update to 2.2.0.
[native-inputs]: Add python-flit-core, python-freezegun, and python-pytest.
Change-Id: Icdb420c0b2fad6e0875042b80e577c97e3bbbbe8
---
gnu/packages/python-xyz.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7c331ac528..7d470a6f8f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6407,15 +6407,18 @@ visualisation and class tracker statistics.")
(define-public python-itsdangerous
(package
(name "python-itsdangerous")
- (version "2.0.1")
+ (version "2.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "itsdangerous" version))
(sha256
- (base32
- "1w6gfb2zhbcmrfj6digwzw1z68w6zg1q87rm6la2m412zil4swly"))))
- (build-system python-build-system)
+ (base32 "0wv1bwzbfvpsh4ng5gn4d4mjwvjwpg7w0jgiz8zsbvm1gl5hq1g0"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-flit-core
+ python-freezegun
+ python-pytest))
(home-page "https://palletsprojects.com/p/itsdangerous/")
(synopsis "Python library for passing data to/from untrusted environments")
(description