diff --git a/pkgs/development/python-modules/types-webencodings/default.nix b/pkgs/development/python-modules/types-webencodings/default.nix index 976a306d7518..e8ae2202cfdb 100644 --- a/pkgs/development/python-modules/types-webencodings/default.nix +++ b/pkgs/development/python-modules/types-webencodings/default.nix @@ -5,15 +5,15 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "types-webencodings"; - version = "0.5.0.20251108"; + version = "0.5.0.20260408"; pyproject = true; src = fetchPypi { pname = "types_webencodings"; - inherit version; - hash = "sha256-I3jizszO09QbteITh1hue1MF4RUZ/GsGWcYp8jsuXeQ="; + inherit (finalAttrs) version; + hash = "sha256-KMWWYZ82fkPu45PYX2Po0v22h0xlSo1EHDf4r+KcbQ0="; }; build-system = [ setuptools ]; @@ -26,4 +26,4 @@ buildPythonPackage rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +})