python3Packages.scrapy: 2.14.1 -> 2.16.0

Diff: https://github.com/scrapy/scrapy/compare/2.14.1...2.16.0

Changelog: https://github.com/scrapy/scrapy/raw/2.16.0/docs/news.rst
This commit is contained in:
Robert Schütz 2026-05-24 11:44:55 -07:00
commit 3c5b8bbdba

View file

@ -9,6 +9,7 @@
fetchFromGitHub,
glibcLocales,
hatchling,
httpx,
installShellFiles,
itemadapter,
itemloaders,
@ -40,14 +41,14 @@
buildPythonPackage rec {
pname = "scrapy";
version = "2.14.1";
version = "2.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "scrapy";
repo = "scrapy";
tag = version;
hash = "sha256-KDci1Z5TZ+3svotYXkEG1s+bPWtxzIfQQwOgvI0k8w0=";
hash = "sha256-s72COXzDuTtRNGenZEZG8QCeq+9LBu6fuT5NOjpVYaY=";
};
pythonRelaxDeps = [
@ -86,6 +87,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
botocore
glibcLocales
httpx
jmespath
pexpect
pytest-asyncio
@ -106,7 +108,6 @@ buildPythonPackage rec {
];
disabledTestPaths = [
"tests/test_proxy_connect.py"
"tests/test_utils_display.py"
"tests/test_command_check.py"
@ -133,9 +134,12 @@ buildPythonPackage rec {
"AnonymousFTPTestCase"
"FTPFeedStorageTest"
"FeedExportTest"
"TestRealWebsite"
"test_custom_asyncio_loop_enabled_true"
"test_custom_loop_asyncio"
"test_custom_loop_asyncio_deferred_signal"
"test_pos_string"
"test_key_resp_or_url"
# "FileFeedStoragePreFeedOptionsTest" # https://github.com/scrapy/scrapy/issues/5157
"test_persist"
"test_timeout_download_from_spider_nodata_rcvd"