summary refs log tree commit diff
path: root/pkgs/development/python-modules/verboselogs/default.nix
blob: 99eb80530ef5bf6fb383a7813d8f583e00f4c21f (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
{ lib, buildPythonPackage, fetchFromGitHub, pytest, mock }:

buildPythonPackage rec {
  pname = "verboselogs";
  version = "1.7";

  src = fetchFromGitHub {
    owner = "xolox";
    repo = "python-verboselogs";
    rev = version;
    sha256 = "10jzm8pkl49as4y2zyiidmfqqj5zmqg3p73jvx4lfxi0gmp1vhl5";
  };

  # do not run pylint plugin test, as astroid is a old unsupported version
  checkPhase = ''
    PATH=$PATH:$out/bin pytest . -k "not test_pylint_plugin"
  '';
  checkInputs = [ pytest mock ];

  meta = with lib; {
    description = "Verbose logging for Python's logging module";
    homepage = "https://github.com/xolox/python-verboselogs";
    license = licenses.mit;
    maintainers = with maintainers; [ eyjhb ];
  };
}