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

buildPythonPackage rec {
  pname = "luddite";
  version = "1.0.2";

  src = fetchFromGitHub {
    owner = "jumptrading";
    repo = pname;
    rev = "v${version}";
    sha256 = "8/7uwO5HLhyXYt+T6VUO/O7TN9+FfRlT8y0r5+CJ/l4=";
  };

  postPatch = ''
    substituteInPlace pytest.ini \
      --replace "--cov=luddite --cov-report=html --cov-report=term --no-cov-on-fail" ""
  '';

  propagatedBuildInputs = [ setuptools ];

  checkInputs = [ pytestCheckHook pytest-socket pytest-mock ];
  pythonImportsCheck = [ "luddite" ];

  meta = with lib; {
    description = "Checks for out-of-date package versions";
    homepage = "https://github.com/jumptrading/luddite";
    license = licenses.asl20;
    maintainers = with maintainers; [ angustrau ];
  };
}