diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-03 07:58:55 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-04 20:29:34 -0300 |
commit | 68be38eed754663a3b2cb901d3197cc7780e6087 (patch) | |
tree | 86cc690370176da3f140c3335082e073e8bde616 /gnu/packages/python-web.scm | |
parent | 371cd2d5c081ab61f2d1524aa04e6a618a39bbe5 (diff) |
gnu: python-scrapy: Update to 2.13.1.
* gnu/packages/python-web.scm (python-scrapy): Update to 2.13.1.
[arguments]<#:test-flags>: Skip failing test.
[native-inputs]: Add python-hatchling.
Change-Id: I027e3a9d0f9dcc580abaa9eeec02f7badfa6675a
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 072d89feff..57b6826dae 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10500,13 +10500,13 @@ regular expressions.") (define-public python-scrapy (package (name "python-scrapy") - (version "2.12.0") + (version "2.13.1") (source (origin (method url-fetch) (uri (pypi-uri "scrapy" version)) (sha256 - (base32 "13vqykvjv9d0hj02l0s025r107dncfj7as0r0iv484lv01v6wvfn")))) + (base32 "18anr8jjjqyv6pfzdm4fr5hx4vddb8qclyja0y874f5slcnsfsrx")))) (build-system pyproject-build-system) (arguments (list #:test-flags @@ -10517,6 +10517,8 @@ regular expressions.") (list "test_pformat" "test_pformat_old_windows" "test_pformat_windows" + ;; AssertionError. + "test_start_deprecated_super" ;; Connection refused. "test_persist") " and not ")) @@ -10550,6 +10552,7 @@ regular expressions.") python-zope-interface)) (native-inputs (list nss-certs-for-test + python-hatchling python-mypy python-pexpect python-pytest |