nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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.

+4 -6
+4 -6
pkgs/development/python-modules/itemadapter/default.nix
··· 3 3 attrs, 4 4 buildPythonPackage, 5 5 fetchPypi, 6 + hatchling, 6 7 pydantic, 7 8 pythonOlder, 8 9 scrapy, 9 - setuptools, 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 13 pname = "itemadapter"; 14 - version = "0.11.0"; 14 + version = "0.12.0"; 15 15 pyproject = true; 16 - 17 - disabled = pythonOlder "3.9"; 18 16 19 17 src = fetchPypi { 20 18 inherit pname version; 21 - hash = "sha256-Ow8n9MXi6K5BXYPj1g0zrbe6CbmMMGOLxgb7Hf8uzdI="; 19 + hash = "sha256-pQiCQ+iO/jCY8XIIVecHF25zVa2H0dIOKwMpf10V0b4="; 22 20 }; 23 21 24 - build-system = [ setuptools ]; 22 + build-system = [ hatchling ]; 25 23 26 24 optional-dependencies = { 27 25 attrs = [ attrs ];