ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / configargparse / default.nix
blob7c1594e9e805d3a4aa87f35f074e507244ac9f45
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , mock
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "configargparse";
10   version = "1.5.3";
12   src = fetchFromGitHub {
13     owner = "bw2";
14     repo = "ConfigArgParse";
15     rev = "v${version}";
16     sha256 = "1dsai4bilkp2biy9swfdx2z0k4akw4lpvx12flmk00r80hzgbglz";
17   };
19   checkInputs = [
20     mock
21     pytestCheckHook
22   ];
24   pythonImportsCheck = [ "configargparse" ];
26   meta = with lib; {
27     description = "A drop-in replacement for argparse";
28     homepage = "https://github.com/bw2/ConfigArgParse";
29     license = licenses.mit;
30     maintainers = [ maintainers.willibutz ];
31   };