summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-26 00:45:03 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:09 +0200
commitfadd26395d4a66286d976290e0dc7f11630fc03e (patch)
tree85d802de603fae449569a8aff6cdd2e8468867a0 /gnu/packages/python-web.scm
parentf36dfb732ba9e266960df44fb8e96087f5234371 (diff)
gnu: python-frozenlist: Update to 1.3.3.
* gnu/packages/python-web.scm (python-frozenlist): Update to 1.3.3. Fix build. [build-system]: Swap to pyproject-build-system. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: Ic03ab0566e79b88c8987c27d3855dca42d0791d1
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm19
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7ca8f47b8f4..b6a90f55b86 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -794,22 +794,19 @@ API rules.")
(define-public python-frozenlist
(package
(name "python-frozenlist")
- (version "1.2.0")
+ ;; XXX: Any newer versions fail to build, check why.
+ (version "1.3.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "frozenlist" version))
(sha256
- (base32 "1pkr23by7pk9lsmsh0wiqirpkq3f1f08b0615nbzysn51bk1n838"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "tests")))))))
- (native-inputs (list python-pytest))
+ (base32 "0sispcpras096fxrd0i35qs25fqy4r0x8v1d6f40pag845bwbg2q"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/aio-libs/frozenlist")
(synopsis "List-like data structure for Python")
(description "@code{frozenlist.FrozenList} is a list-like structure which