Fabian Affolter 2024-09-05 15:07:18 +02:00
parent 716ed9fa78
commit d7a5ae0a6a

View File

@ -5,6 +5,7 @@
fetchFromGitHub,
pyasyncore,
pysnmp,
pysnmplib,
pytestCheckHook,
python-gnupg,
pythonAtLeast,
@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "blocksat-cli";
version = "2.4.6";
version = "2.4.7";
pyproject = true;
disabled = pythonOlder "3.8";
@ -25,14 +26,17 @@ buildPythonPackage rec {
owner = "Blockstream";
repo = "satellite";
rev = "refs/tags/v${version}";
hash = "sha256-1gz2lAS/AHeY54AaVXGeofLC68KjAP7POsIaBL3v2EY=";
hash = "sha256-OmIQUrUH3kWgf+v+9Hl2OgDdGPwb3guNY0+H64CWkeg=";
};
nativeBuildInputs = [ setuptools ];
pythonRelaxDeps = [ "pyasyncore" ];
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
distro
pysnmp
pysnmplib
python-gnupg
qrcode
requests
@ -50,10 +54,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Blockstream Satellite CLI";
mainProgram = "blocksat-cli";
homepage = "https://github.com/Blockstream/satellite";
changelog = "https://github.com/Blockstream/satellite/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ prusnak ];
mainProgram = "blocksat-cli";
};
}