0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00
nixpkgs/pkgs/development/python-modules/click-plugins/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
619 B
Nix
Raw Permalink Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
click,
pytest,
}:
buildPythonPackage rec {
pname = "click-plugins";
2019-10-24 08:47:27 +02:00
version = "1.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:27 +02:00
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; [ ];
};
}