summary refs log tree commit diff
path: root/pkgs/development/python-modules/expiringdict/default.nix
blob: 9dfe60aca7e380f31ff075d3e7b5ce1a272d65cf (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
42
43
44
45
46
47
48
49
{ lib
, buildPythonPackage
, fetchFromGitHub
, dill
, coverage
, coveralls
, mock
, nose
}:

buildPythonPackage rec {
  pname = "expiringdict";
  version = "1.2.2";
  format = "setuptools";

  # use fetchFromGitHub instead of fetchPypi because the test suite of
  # the package is not included into the PyPI tarball
  src = fetchFromGitHub {
    owner = "mailgun";
    repo = pname;
    rev = "refs/tags/v${version}";
    sha256 = "sha256-vRhJSHIqc51I+s/wndtfANM44CKW3QS1iajqyoSBf0I=";
  };

  checkInputs = [
    dill
    coverage
    coveralls
    mock
    nose
  ];

  checkPhase = ''
    runHook preCheck
    nosetests -v --with-coverage --cover-package=expiringdict
    runHook postCheck
  '';

  pythonImportsCheck = [
    "expiringdict"
  ];

  meta = with lib; {
    description = "Dictionary with auto-expiring values for caching purposes";
    homepage = "https://github.com/mailgun/expiringdict";
    license = licenses.asl20;
    maintainers = with maintainers; [ gravndal ];
  };
}