10 buildPythonPackage rec {
11 pname = "click-configfile";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-lb7sE77pUOmPQ8gdzavvT2RAkVWepmKY+drfWTUdkNE=";
22 propagatedBuildInputs = [
32 substituteInPlace setup.py \
33 --replace "install_requires=install_requires," 'install_requires=["click >= 6.6", "six >= 1.10"],'
36 pythonImportsCheck = [
41 "test_configfile__with_unbound_section"
42 "test_matches_section__with_bad_arg"
46 description = "Add support for commands that use configuration files to Click";
47 homepage = "https://github.com/click-contrib/click-configfile";
48 license = licenses.bsd3;
49 maintainers = with maintainers; [ ];