about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ansiwrap/default.nix
blob: 1af39e970bcd662cb40a7881dc33b122eac57106 (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
{ lib
, buildPythonPackage
, fetchPypi
, tox
, pytest
, ansicolors
, coverage
, pytestcov
, textwrap3
}:

buildPythonPackage rec {
  pname = "ansiwrap";
  version = "0.8.4";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "ca0c740734cde59bf919f8ff2c386f74f9a369818cdc60efe94893d01ea8d9b7";
  };

  checkInputs = [
    tox
    pytest
    ansicolors
    coverage
    pytestcov
  ];

  propagatedBuildInputs = [
    textwrap3
  ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    description = "Textwrap, but savvy to ANSI colors and styles";
    homepage = "https://github.com/jonathaneunice/ansiwrap";
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
  };
}