Files
nixpkgs/pkgs/development/python-modules/click-plugins/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

34 lines
647 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 = [ ];
};
}