summary refs log tree commit diff
path: root/pkgs/development/python-modules/clint/default.nix
blob: 45733c4ae7f1b8af0626603d45407752ab89d97b (plain) (blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, buildPythonPackage
, fetchPypi
, python
, mock
, blessings
, nose
, nose_progressive
, pillow
, args
, pkgs
}:

buildPythonPackage rec {
  pname = "clint";
  version = "0.5.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5";
  };

  LC_ALL="en_US.UTF-8";

  propagatedBuildInputs = [ pillow blessings args ];

  # nose-progressive and clint are not actively maintained
  # no longer compatible as behavior demand 2to3, which was removed
  # in setuptools>=58
  doCheck  = false;
  checkInputs = [ mock nose nose_progressive pkgs.glibcLocales ];
  checkPhase = ''
    ${python.interpreter} test_clint.py
  '';

  pythonImportsCheck = [ "clint" ];

  meta = with lib; {
    homepage = "https://github.com/kennethreitz/clint";
    description = "Python Command Line Interface Tools";
    license = licenses.isc;
    maintainers = with maintainers; [ domenkozar ];
  };

}