python3Packages.scrapy: 2.12.0 -> 2.13.3

This commit is contained in:
Vinny Meller
2025-07-17 02:11:21 -04:00
parent 1e65ae640e
commit add1c1e29e

View File

@@ -8,6 +8,7 @@
defusedxml, defusedxml,
fetchFromGitHub, fetchFromGitHub,
glibcLocales, glibcLocales,
hatchling,
installShellFiles, installShellFiles,
itemadapter, itemadapter,
itemloaders, itemloaders,
@@ -36,7 +37,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "scrapy"; pname = "scrapy";
version = "2.12.0"; version = "2.13.3";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@@ -45,13 +46,17 @@ buildPythonPackage rec {
owner = "scrapy"; owner = "scrapy";
repo = "scrapy"; repo = "scrapy";
tag = version; tag = version;
hash = "sha256-o3+57+bZRohgrld2EuoQDU2LioJu0jmaC/RPREvI1t8="; hash = "sha256-M+Lko0O0xsEPHLghvIGHxIv22XBXaZsujJ2+bjBzGZ4=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [
"defusedxml" "defusedxml"
]; ];
build-system = [
hatchling
];
nativeBuildInputs = [ nativeBuildInputs = [
installShellFiles installShellFiles
setuptools setuptools
@@ -95,6 +100,18 @@ buildPythonPackage rec {
"tests/test_proxy_connect.py" "tests/test_proxy_connect.py"
"tests/test_utils_display.py" "tests/test_utils_display.py"
"tests/test_command_check.py" "tests/test_command_check.py"
# ConnectionRefusedError: [Errno 111] Connection refused
"tests/test_feedexport.py::TestFTPFeedStorage::test_append"
"tests/test_feedexport.py::TestFTPFeedStorage::test_append_active_mode"
"tests/test_feedexport.py::TestFTPFeedStorage::test_overwrite"
"tests/test_feedexport.py::TestFTPFeedStorage::test_overwrite_active_mode"
# this test is testing that the *first* deprecation warning is a specific one
# but for some reason we get other deprecation warnings appearing first
# but this isn't a material issue and the deprecation warning is still raised
"tests/test_spider_start.py::MainTestCase::test_start_deprecated_super"
# Don't test the documentation # Don't test the documentation
"docs" "docs"
]; ];