Files
nixpkgs/pkgs/development/python-modules/deprecation-alias/default.nix
T
Martin Weinelt f7ff12db5f python3Packages.deprecation-alias: 0.3.3 -> 0.4.0
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:14 +02:00

34 lines
721 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
buildPythonPackage,
fetchPypi,
lib,
hatch-requirements-txt,
deprecation,
packaging,
}:
buildPythonPackage rec {
pname = "deprecation-alias";
version = "0.4.0";
pyproject = true;
src = fetchPypi {
pname = "deprecation_alias";
inherit version;
hash = "sha256-pY0udEkceDTp0xh4jaYCcvovga64FLQFWkupCgpBdA8=";
};
build-system = [ hatch-requirements-txt ];
dependencies = [
deprecation
packaging
];
meta = {
description = "A wrapper around deprecation providing support for deprecated aliases.";
homepage = "https://github.com/domdfcoding/deprecation-alias";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyberius-prime ];
};
}