Unverified Commit adbb3e3d authored by Martin Weinelt's avatar Martin Weinelt
Browse files

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.
parent f5090c64
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -3,25 +3,23 @@
  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 ];