python3.pkgs.click-configfile: init at 0.2.3
This commit is contained in:
parent
0d55d38b41
commit
d26d771381
38
pkgs/development/python-modules/click-configfile/default.nix
Normal file
38
pkgs/development/python-modules/click-configfile/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, click
|
||||
, six
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "click-configfile";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "lb7sE77pUOmPQ8gdzavvT2RAkVWepmKY+drfWTUdkNE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
six
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_configfile__with_unbound_section"
|
||||
"test_matches_section__with_bad_arg"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Add support for commands that use configuration files to Click";
|
||||
homepage = "https://github.com/click-contrib/click-configfile";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
};
|
||||
}
|
@ -1359,6 +1359,8 @@ in {
|
||||
|
||||
click-completion = callPackage ../development/python-modules/click-completion { };
|
||||
|
||||
click-configfile = callPackage ../development/python-modules/click-configfile { };
|
||||
|
||||
click-datetime = callPackage ../development/python-modules/click-datetime { };
|
||||
|
||||
click-default-group = callPackage ../development/python-modules/click-default-group { };
|
||||
|
Loading…
Reference in New Issue
Block a user