python313Packages.itemadapter: 0.10.0 -> 0.11.0 (#380435)
This commit is contained in:
@@ -1,25 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
attrs,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pydantic,
|
||||
pythonOlder,
|
||||
scrapy,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "itemadapter";
|
||||
version = "0.10.0";
|
||||
version = "0.11.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-JlXIxQ8ahAXJ+nS4zcTaf+xUHKIXvIIbkKzIRRyYqdI=";
|
||||
hash = "sha256-Ow8n9MXi6K5BXYPj1g0zrbe6CbmMMGOLxgb7Hf8uzdI=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
optional-dependencies = {
|
||||
attrs = [ attrs ];
|
||||
pydantic = [ pydantic ];
|
||||
scrapy = [ scrapy ];
|
||||
};
|
||||
|
||||
# Infinite recursion with Scrapy
|
||||
doCheck = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user