aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/face/default.nix
blob: 34d91ceda9888860105dd086dfe73f511dfd202f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, buildPythonPackage, fetchPypi, boltons, pytest }:

buildPythonPackage rec {
  pname = "face";
  version = "19.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "38c94ec17a4d6f9628f094b697faca0f802f4028071ce8cbdb3116d4cde772a3";
  };

  propagatedBuildInputs = [ boltons ];

  checkInputs = [ pytest ];
  checkPhase = "pytest face/test";

  # ironically, test_parse doesn't parse, but fixed in git so no point
  # reporting
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "https://github.com/mahmoud/face";
    description = "A command-line interface parser and framework";
    longDescription = ''
      A command-line interface parser and framework, friendly for
      users, full-featured for developers.
    '';
    license = licenses.bsd3;
    maintainers = with maintainers; [ twey ];
  };
}