python311Packages.scrapy: 2.11.0 -> 2.11.1

Changelog: https://github.com/scrapy/scrapy/raw/2.11.1/docs/news.rst
This commit is contained in:
Mario Rodas
2024-02-14 04:20:00 +00:00
parent a4d4fe8c50
commit daf29b1eba
@@ -5,7 +5,6 @@
, cryptography
, cssselect
, fetchPypi
, fetchpatch
, glibcLocales
, installShellFiles
, itemadapter
@@ -32,7 +31,7 @@
buildPythonPackage rec {
pname = "scrapy";
version = "2.11.0";
version = "2.11.1";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -40,21 +39,9 @@ buildPythonPackage rec {
src = fetchPypi {
inherit version;
pname = "Scrapy";
hash = "sha256-PL3tzgw/DgSC1hvi10WGg758188UsO5q37rduA9bNqU=";
hash = "sha256-czoDnHQj5StpvygQtTMgk9TkKoSEYDWcB7Auz/j3Pr4=";
};
patches = [
# Fix compatiblity with Twisted>=23.8. Remove with the next release.
(fetchpatch {
url = "https://github.com/scrapy/scrapy/commit/aa95ada42cdf570f840f55c463375f8a81b303f8.patch";
hash = "sha256-LuhA5BqtjSUgkotplvUCtvGNYOTrl0MJRCXiSBMDFzY=";
excludes = [
"tests/CrawlerProcess/sleeping.py"
"tests/test_crawler.py"
];
})
];
nativeBuildInputs = [
installShellFiles
];