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

  src = fetchPypi {
    inherit pname version;
    sha256 = "3cf31b25cbc8f86ec01fef582ef3b840950dea414084ed19ab922c8b493f9b42";
  };

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