mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 23:52:33 +00:00
pythonPackages.click-default-group: init at 1.2
This commit is contained in:
parent
e27bef23f1
commit
355d49cebb
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, click, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "click-default-group";
|
||||
version = "1.2";
|
||||
|
||||
# No tests in Pypi tarball
|
||||
src = fetchFromGitHub {
|
||||
owner = "click-contrib";
|
||||
repo = "click-default-group";
|
||||
rev = "v${version}";
|
||||
sha256 = "0lm2k4jvy4ilvv91niawklfnp5mp7wa8c1bicsqdfzrxmw7jliwp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click ];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/click-contrib/click-default-group;
|
||||
description = "Group to invoke a command without explicit subcommand name";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jakewaksbaum ];
|
||||
};
|
||||
}
|
|
@ -1254,6 +1254,8 @@ in {
|
|||
|
||||
click-completion = callPackage ../development/python-modules/click-completion {};
|
||||
|
||||
click-default-group = callPackage ../development/python-modules/click-default-group { };
|
||||
|
||||
click-didyoumean = callPackage ../development/python-modules/click-didyoumean {};
|
||||
|
||||
click-log = callPackage ../development/python-modules/click-log {};
|
||||
|
|
Loading…
Reference in a new issue