depot/third_party/nixpkgs/pkgs/development/python-modules/click-plugins/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
629 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
click,
pytest,
}:
buildPythonPackage rec {
pname = "click-plugins";
version = "1.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b";
};
propagatedBuildInputs = [ 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; [ knedlsepp ];
};
}