Files
nixpkgs/pkgs/development/python-modules/click-plugins/default.nix
T
Martin Weinelt e23d04d3d2 python3Packages.click-plugins: 1.1.1 -> 1.1.1.2
This commit was automatically generated using update-python-libraries.
2025-08-09 18:58:51 +02:00

34 lines
665 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
click,
pytest,
setuptools,
}:
buildPythonPackage rec {
pname = "click-plugins";
version = "1.1.1.2";
pyproject = true;
src = fetchPypi {
pname = "click_plugins";
inherit version;
sha256 = "sha256-1685hKmdJDwTGqGoKDMedjD0qIqXQf0FySeyBLz5ImE=";
};
build-system = [ setuptools ];
dependencies = [ click ];
nativeCheckInputs = [ pytest ];
meta = with lib; {
description = "Extension module for click to enable registering CLI commands";
homepage = "https://github.com/click-contrib/click-plugins";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}