Merge pull request #188556 from marsam/update-itemloaders

python310Packages.itemloaders: 1.0.4 -> 1.0.5

authored by Fabian Affolter and committed by GitHub 6f68aa02 b04dd83e

+18 -7
+18 -7
pkgs/development/python-modules/itemloaders/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "itemloaders"; 14 - version = "1.0.4"; 15 disabled = pythonOlder "3.6"; 16 17 - # Tests not included in PyPI tarball 18 src = fetchFromGitHub { 19 owner = "scrapy"; 20 repo = pname; 21 rev = "v${version}"; 22 - sha256 = "0j68xgx2z63sc1nc9clw6744036vfbijdsghvjv6pk674d5lgyam"; 23 }; 24 25 - propagatedBuildInputs = [ w3lib parsel jmespath itemadapter ]; 26 27 - checkInputs = [ pytestCheckHook ]; 28 29 disabledTests = [ 30 # Test are failing (AssertionError: Lists differ: ...) ··· 32 "test_nested_xpath" 33 ]; 34 35 - pythonImportsCheck = [ "itemloaders" ]; 36 37 meta = with lib; { 38 description = "Base library for scrapy's ItemLoader"; 39 homepage = "https://github.com/scrapy/itemloaders"; 40 license = licenses.bsd3; 41 - maintainers = [ maintainers.marsam ]; 42 }; 43 }
··· 11 12 buildPythonPackage rec { 13 pname = "itemloaders"; 14 + version = "1.0.5"; 15 + format = "setuptools"; 16 + 17 disabled = pythonOlder "3.6"; 18 19 src = fetchFromGitHub { 20 owner = "scrapy"; 21 repo = pname; 22 rev = "v${version}"; 23 + hash = "sha256-ueq1Rsuae+wz4eFc1O7luBVR4XWGbefpDr124H6j56g="; 24 }; 25 26 + propagatedBuildInputs = [ 27 + w3lib 28 + parsel 29 + jmespath 30 + itemadapter 31 + ]; 32 33 + checkInputs = [ 34 + pytestCheckHook 35 + ]; 36 37 disabledTests = [ 38 # Test are failing (AssertionError: Lists differ: ...) ··· 40 "test_nested_xpath" 41 ]; 42 43 + pythonImportsCheck = [ 44 + "itemloaders" 45 + ]; 46 47 meta = with lib; { 48 description = "Base library for scrapy's ItemLoader"; 49 homepage = "https://github.com/scrapy/itemloaders"; 50 + changelog = "https://github.com/scrapy/itemloaders/raw/v${version}/docs/release-notes.rst"; 51 license = licenses.bsd3; 52 + maintainers = with maintainers; [ marsam ]; 53 }; 54 }