ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / face / default.nix
blob50db0ce94991809e62d4d9516a36a3a15b1a2918
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , boltons
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "face";
11   version = "22.0.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-1daS+QvI9Zh7Y25H42OEubvaSZqvCneqCwu+g0x2kj0=";
19   };
21   propagatedBuildInputs = [
22     boltons
23   ];
25   checkInputs = [
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [
30     "face"
31   ];
33   disabledTests = [
34     # Assertion error as we take the Python release into account
35     "test_search_prs_basic"
36   ];
38   meta = with lib; {
39     description = "A command-line interface parser and framework";
40     longDescription = ''
41       A command-line interface parser and framework, friendly for
42       users, full-featured for developers.
43     '';
44     homepage = "https://github.com/mahmoud/face";
45     license = licenses.bsd3;
46     maintainers = with maintainers; [ twey ];
47   };