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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
{
lib,
awesomeversion,
buildPythonPackage,
docutils,
fetchFromGitHub,
flaky,
installShellFiles,
jq,
lxml,
nix-update-script,
packaging,
platformdirs,
pycurl,
pytest-asyncio,
pytestCheckHook,
pytest-httpbin,
pythonOlder,
setuptools,
structlog,
tomli,
tornado,
zstandard,
}:
buildPythonPackage rec {
pname = "nvchecker";
version = "2.20";
pyproject = true;
src = fetchFromGitHub {
owner = "lilydjwg";
repo = "nvchecker";
tag = "v${version}";
hash = "sha256-udwflm3C7C6Q7rSA0x0+8uf1F5quy2okf2IyZqKtA3E=";
};
__darwinAllowLocalNetworking = true;
build-system = [ setuptools ];
nativeBuildInputs = [
docutils
installShellFiles
];
dependencies = [
structlog
platformdirs
tornado
pycurl
]
++ lib.optionals (pythonOlder "3.11") [ tomli ];
optional-dependencies = {
# vercmp = [ pyalpm ];
awesomeversion = [ awesomeversion ];
pypi = [ packaging ];
htmlparser = [ lxml ];
rpmrepo = [ lxml ] ++ lib.optionals (pythonOlder "3.14") [ zstandard ];
jq = [ jq ];
};
nativeCheckInputs = [
flaky
pytest-asyncio
pytest-httpbin
pytestCheckHook
];
postBuild = ''
patchShebangs docs/myrst2man.py
make -C docs man
'';
postInstall = ''
installManPage docs/_build/man/nvchecker.1
'';
pythonImportsCheck = [ "nvchecker" ];
disabledTestMarks = [ "needs_net" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "New version checker for software";
homepage = "https://github.com/lilydjwg/nvchecker";
changelog = "https://github.com/lilydjwg/nvchecker/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mdaniels5757 ];
};
}
|