summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-01-18 14:10:44 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:29 +0100
commit2ed4b04db389543aac332c24d9efeebce546c591 (patch)
tree773618033d211d876218eee7c6961621c185288a /gnu/packages/python-web.scm
parent38cd29afb947d3595ade2a5bb571f5572d0382be (diff)
gnu: python-frozenlist: Update to 1.8.0.
* gnu/packages/python-web.scm (python-frozenlist): Update to 1.8.0. [source]: Switch to git-fetch. [outputs]: Add "wheel" output. [arguments]<#:test-flags>: Ignore configuration. [native-inputs]: Add python-cython, python-pytest, python-tomli. Remove python-wheel. Change-Id: I3ff9f502960c8dd1ff304b90499d4c1370869b20 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm22
1 files changed, 15 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a4f3aaceb72..34133fca8bd 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1879,19 +1879,27 @@ API rules.")
(define-public python-frozenlist
(package
(name "python-frozenlist")
- ;; XXX: Any newer versions fail to build, check why.
- (version "1.3.3")
+ (version "1.8.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "frozenlist" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/aio-libs/frozenlist")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0sispcpras096fxrd0i35qs25fqy4r0x8v1d6f40pag845bwbg2q"))))
+ (base32 "0r1kxf5b562zrn04nl912i6a8y1fyc891l1284v0zj9llb97limy"))))
+ ;; XXX: Without "wheel", the 'install phase can't find the wheel.
+ (outputs (list "out" "wheel"))
(build-system pyproject-build-system)
+ ;; The configuration contains explicit calls to pytest_cov.
+ (arguments (list #:test-flags #~(list "-c" "/dev/null")))
(native-inputs
- (list python-pytest
+ (list python-cython
+ python-expandvars
+ python-pytest
python-setuptools
- python-wheel))
+ python-tomli))
(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