blob: e96063b22dc6089ea6a0c2b2a3ab0951da4b770e (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
packaging,
pytestCheckHook,
pytest-cov-stub,
pytest-mock,
}:
buildPythonPackage rec {
pname = "luddite";
version = "1.0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "jumptrading";
repo = "luddite";
tag = "v${version}";
hash = "sha256-iJ3h1XRBzLd4cBKFPNOlIV5Z5XJ/miscfIdkpPIpbJ8=";
};
postPatch = ''
substituteInPlace pytest.ini \
--replace "--disable-socket" ""
'';
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ packaging ];
pythonImportsCheck = [ "luddite" ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
pytest-mock
];
meta = {
description = "Checks for out-of-date package versions";
mainProgram = "luddite";
homepage = "https://github.com/jumptrading/luddite";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ emilytrau ];
};
}
|