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
|
{
lib,
buildPythonPackage,
distro,
fetchFromGitHub,
pyasyncore,
pysnmp,
pysnmplib,
pytestCheckHook,
python-gnupg,
pythonAtLeast,
qrcode,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "blocksat-cli";
version = "2.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Blockstream";
repo = "satellite";
tag = "v${version}";
hash = "sha256-SH1MZx/ZkhhWhxhREqFCGoob58J2XMZSpe+q7UgiyF4=";
};
# Upstream setup.py installs both the CLI and GUI versions.
# To pull only the required dependencyes, either setup_cli.py or setup_gui.py should be used.
postPatch = ''
mv setup_cli.py setup.py
'';
pythonRelaxDeps = [ "pyasyncore" ];
build-system = [ setuptools ];
dependencies = [
distro
pysnmp
pysnmplib
python-gnupg
qrcode
requests
]
++ lib.optionals (pythonAtLeast "3.12") [ pyasyncore ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
"test_monitor_get_stats"
"test_monitor_update_with_reporting_enabled"
"test_erasure_recovery"
# Non-NixOS package managers are not present in the build environment.
"test_parse_upgradable_list_apt"
"test_parse_upgradable_list_dnf"
# Fails due to GPG clearsign output lacking trailing newline in some setups.
"test_clearsign_verification"
];
disabledTestPaths = [ "blocksatgui/tests/" ];
pythonImportsCheck = [ "blocksatcli" ];
meta = {
description = "Blockstream Satellite CLI";
homepage = "https://github.com/Blockstream/satellite";
changelog = "https://github.com/Blockstream/satellite/releases/tag/${src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ prusnak ];
mainProgram = "blocksat-cli";
};
}
|