Merge pull request #197317 from marsam/update-scrapy

python310Packages.scrapy: 2.6.3 -> 2.7.0

authored by Mario Rodas and committed by GitHub 6d3aacb2 15c32d06

+7 -2
+7 -2
pkgs/development/python-modules/scrapy/default.nix
··· 12 12 , itemloaders 13 13 , jmespath 14 14 , lxml 15 + , packaging 15 16 , parsel 16 17 , protego 17 18 , pydispatcher ··· 30 31 31 32 buildPythonPackage rec { 32 33 pname = "scrapy"; 33 - version = "2.6.3"; 34 + version = "2.7.0"; 34 35 format = "setuptools"; 35 36 36 37 disabled = pythonOlder "3.7"; ··· 38 39 src = fetchPypi { 39 40 inherit version; 40 41 pname = "Scrapy"; 41 - hash = "sha256-vf8arzVHwuVAQ206uGgLIQOTJ71dOi74nDQWWZLT5fM="; 42 + hash = "sha256-Ssvg8fX7XqkTU1EriVjtMEvCX2373ig5oNh6SUNRWLk="; 42 43 }; 43 44 44 45 nativeBuildInputs = [ ··· 51 52 itemadapter 52 53 itemloaders 53 54 lxml 55 + packaging 54 56 parsel 55 57 protego 56 58 pydispatcher ··· 103 105 "FileFeedStoragePreFeedOptionsTest" # https://github.com/scrapy/scrapy/issues/5157 104 106 "test_timeout_download_from_spider_nodata_rcvd" 105 107 "test_timeout_download_from_spider_server_hangs" 108 + # Depends on uvloop 109 + "test_asyncio_enabled_reactor_different_loop" 110 + "test_asyncio_enabled_reactor_same_loop" 106 111 # Fails with AssertionError 107 112 "test_peek_fifo" 108 113 "test_peek_one_element"