python3Packages.deprecation-alias: 0.3.3 -> 0.4.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-04-03 23:12:14 +02:00
parent ed3c2b6e0b
commit f7ff12db5f
@@ -2,32 +2,28 @@
buildPythonPackage,
fetchPypi,
lib,
setuptools,
hatch-requirements-txt,
deprecation,
packaging,
}:
buildPythonPackage rec {
pname = "deprecation-alias";
version = "0.3.3";
version = "0.4.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-5zJm1MhmwEAHnXoEf5KsLNRotGCAMkht8f/X7xR+ZRU=";
pname = "deprecation_alias";
inherit version;
hash = "sha256-pY0udEkceDTp0xh4jaYCcvovga64FLQFWkupCgpBdA8=";
};
build-system = [ setuptools ];
build-system = [ hatch-requirements-txt ];
dependencies = [
deprecation
packaging
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
'';
meta = {
description = "A wrapper around deprecation providing support for deprecated aliases.";
homepage = "https://github.com/domdfcoding/deprecation-alias";