Merge pull request #100218 from marsam/update-itemloaders

pythonPackages.itemloaders: 1.0.1 -> 1.0.3
This commit is contained in:
Mario Rodas 2020-10-11 11:23:18 -05:00 committed by GitHub
commit 760bb20e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "itemadapter";
version = "0.1.0";
version = "0.1.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "52159b4f97d82aa2968000ee8371b2114af56a2f44e4cd9142580d46eea39020";
sha256 = "b5e75d48c769ee5c89de12aeba537b2d62d7b575cd549d5d430ed8a67faa63f2";
};
doCheck = false; # infinite recursion with Scrapy

View File

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "itemloaders";
version = "1.0.1";
version = "1.0.3";
disabled = isPy27;
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "scrapy";
repo = pname;
rev = "v${version}";
sha256 = "0frs0s876ddha844vhnhhiggyk3qbhhngrwkvgg3c0mrnn282f6k";
sha256 = "1s8c2il7jyfixpb7h5zq0lf4s07pqwia4ycpf3slb8whcp0h8bfm";
};
propagatedBuildInputs = [ w3lib parsel jmespath itemadapter ];