forked from mirrors/nixpkgs
pythonPackages.clickclick: init at 1.2.2
This commit is contained in:
parent
8d6878c861
commit
ea70d67235
28
pkgs/development/python-modules/clickclick/default.nix
Normal file
28
pkgs/development/python-modules/clickclick/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, isPy36, flake8, click, pyyaml, six, pytestCheckHook, pytestcov }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "clickclick";
|
||||
version = "1.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hjacobs";
|
||||
repo = "python-clickclick";
|
||||
rev = version;
|
||||
sha256 = "1rij9ws9nhsmagiy1vclzliiqfkxi006rf65qvrw1k3sm2s8p5g0";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook pytestcov ];
|
||||
propagatedBuildInputs = [ flake8 click pyyaml six ];
|
||||
|
||||
disabledTests = lib.optionals isPy36 [
|
||||
"test_cli"
|
||||
"test_choice_default"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Click command line utilities";
|
||||
homepage = https://github.com/hjacobs/python-clickclick/;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ elohmeier ];
|
||||
};
|
||||
}
|
|
@ -475,6 +475,8 @@ in {
|
|||
|
||||
clifford = callPackage ../development/python-modules/clifford { };
|
||||
|
||||
clickclick = callPackage ../development/python-modules/clickclick { };
|
||||
|
||||
clustershell = callPackage ../development/python-modules/clustershell { };
|
||||
|
||||
cnvkit = callPackage ../development/python-modules/cnvkit { };
|
||||
|
|
Loading…
Reference in a new issue