python3Packages.itemadapter: 0.11.0 -> 0.12.0

https://github.com/scrapy/itemadapter/raw/v0.12.0/Changelog.md

This commit was automatically generated using update-python-libraries.

Changed files
+4 -6
pkgs
development
python-modules
itemadapter
+4 -6
pkgs/development/python-modules/itemadapter/default.nix
···
attrs,
buildPythonPackage,
fetchPypi,
+
hatchling,
pydantic,
pythonOlder,
scrapy,
-
setuptools,
}:
buildPythonPackage rec {
pname = "itemadapter";
-
version = "0.11.0";
+
version = "0.12.0";
pyproject = true;
-
disabled = pythonOlder "3.9";
-
src = fetchPypi {
inherit pname version;
-
hash = "sha256-Ow8n9MXi6K5BXYPj1g0zrbe6CbmMMGOLxgb7Hf8uzdI=";
+
hash = "sha256-pQiCQ+iO/jCY8XIIVecHF25zVa2H0dIOKwMpf10V0b4=";
};
-
build-system = [ setuptools ];
+
build-system = [ hatchling ];
optional-dependencies = {
attrs = [ attrs ];