python310Packages.scrapy: 2.8.0 -> 2.9.0

Changelog: https://github.com/scrapy/scrapy/releases/tag/2.9.0

Diff: https://github.com/scrapy/scrapy/compare/2.8.0...2.9.0
This commit is contained in:
Mario Rodas 2023-05-08 04:20:00 +00:00
parent 24442dd515
commit d906740e60

View File

@ -31,7 +31,7 @@
buildPythonPackage rec {
pname = "scrapy";
version = "2.8.0";
version = "2.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -39,7 +39,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit version;
pname = "Scrapy";
hash = "sha256-gHGsbGXxhewsdv6FCflNmf6ggFGf3CBvkIqSDV4F/kM=";
hash = "sha256-VkyXK1blS4MUHzlc4/aiW/4gk9YdE/m4HQU4ThnbmNo=";
};
nativeBuildInputs = [
@ -76,12 +76,6 @@ buildPythonPackage rec {
LC_ALL = "en_US.UTF-8";
preCheck = ''
# Disable doctest plugin because it causes pytest to hang
substituteInPlace pytest.ini \
--replace "--doctest-modules" ""
'';
disabledTestPaths = [
"tests/test_proxy_connect.py"
"tests/test_utils_display.py"