about summary refs log tree commit diff
path: root/pkgs/development/python-modules/logutils/default.nix
blob: 7f35845785634c1a5e2066875314ff12a9bdab14 (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
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, redis
, redis-server
}:

buildPythonPackage rec {
  pname = "logutils";
  version = "0.3.5";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bc058a25d5c209461f134e1f03cab637d66a7a5ccc12e593db56fbb279899a82";
  };

  nativeCheckInputs = [
    pytestCheckHook
    redis
    redis-server
  ];

  disabledTests = [
    # https://bitbucket.org/vinay.sajip/logutils/issues/4/035-pytest-test-suite-warnings-and-errors
    "test_hashandlers"
  ];

  disabledTestPaths = lib.optionals (stdenv.isDarwin) [
    # Exception: unable to connect to Redis server
    "tests/test_redis.py"
  ];

  meta = with lib; {
    description = "Logging utilities";
    homepage = "https://bitbucket.org/vinay.sajip/logutils/";
    license = licenses.bsd0;
  };
}