summary refs log tree commit diff
path: root/pkgs/development/python-modules/colorlog/default.nix
blob: e737b8848975f499977eee1359e6e5ff4a6e0c2b (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
{ stdenv, buildPythonPackage, fetchPypi, pytest }:

buildPythonPackage rec {
  pname = "colorlog";
  version = "3.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0i21sd6pggr2gqza41vyq2rqyb552wf5iwl4bc16i7kqislbd53z";
  };

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test -p no:logging
  '';

  meta = with stdenv.lib; {
    description = "Log formatting with colors";
    homepage = https://github.com/borntyping/python-colorlog;
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}