Commit c5a03ce1 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.w3lib: 2.3.1 -> 2.4.0

parent d6933c9d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2,21 +2,21 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  hatchling,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
  pname = "w3lib";
  version = "2.3.1";
  version = "2.4.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-XIrAKjAnV2F0wrYeuaIXC6Gxl8rnZwgHcbbx/r2iSaQ=";
    hash = "sha256-4jOtIWSbadDgR6EPMBga6Wd1JKKfb3H288dY3AyNJkg=";
  };

  build-system = [ setuptools ];
  build-system = [ hatchling ];

  nativeCheckInputs = [ pytestCheckHook ];