Merge pull request #164798 from r-ryantm/auto-update/python310Packages.itemadapter

python310Packages.itemadapter: 0.4.0 -> 0.5.0
This commit is contained in:
Fabian Affolter 2022-03-19 11:05:59 +01:00 committed by GitHub
commit ab762788b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,33 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 }: { lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "itemadapter"; pname = "itemadapter";
version = "0.4.0"; version = "0.5.0";
format = "setuptools";
disabled = isPy27; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "f05df8da52619da4b8c7f155d8a15af19083c0c7ad941d8c1de799560ad994ca"; hash = "sha256-BbanndMaepk9+y6Dhqkcl+O4xs8otyVT6AjmJeC4fCA=";
}; };
doCheck = false; # infinite recursion with Scrapy # Infinite recursion with Scrapy
doCheck = false;
pythonImportsCheck = [ "itemadapter" ]; pythonImportsCheck = [
"itemadapter"
];
meta = with lib; { meta = with lib; {
description = "Common interface for data container classes"; description = "Common interface for data container classes";
homepage = "https://github.com/scrapy/itemadapter"; homepage = "https://github.com/scrapy/itemadapter";
changelog = "https://github.com/scrapy/itemadapter/raw/v${version}/Changelog.md"; changelog = "https://github.com/scrapy/itemadapter/raw/v${version}/Changelog.md";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.marsam ]; maintainers = with maintainers; [ marsam ];
}; };
} }