summary refs log tree commit diff
path: root/pkgs/development/python-modules/colorlog/default.nix
blob: 3045e61db60794f93678d984393b8134c3502b35 (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.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "418db638c9577f37f0fae4914074f395847a728158a011be2a193ac491b9779d";
  };

  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 ];
  };
}