mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
689 B
Nix
26 lines
689 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, click, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-default-group";
|
|
version = "1.2.2";
|
|
|
|
# No tests in Pypi tarball
|
|
src = fetchFromGitHub {
|
|
owner = "click-contrib";
|
|
repo = "click-default-group";
|
|
rev = "v${version}";
|
|
sha256 = "0nk39lmkn208w8kvq6f4h3a6qzxrrvxixahpips6ik3zflbkss86";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|