python312Packages.blocksat-cli: 2.4.6 -> 2.4.7 (#339793)

This commit is contained in:
Fabian Affolter 2024-09-05 22:20:43 +02:00 committed by GitHub
commit 51a0103903
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,7 @@
fetchFromGitHub, fetchFromGitHub,
pyasyncore, pyasyncore,
pysnmp, pysnmp,
pysnmplib,
pytestCheckHook, pytestCheckHook,
python-gnupg, python-gnupg,
pythonAtLeast, pythonAtLeast,
@ -16,7 +17,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "blocksat-cli"; pname = "blocksat-cli";
version = "2.4.6"; version = "2.4.7";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -25,14 +26,17 @@ buildPythonPackage rec {
owner = "Blockstream"; owner = "Blockstream";
repo = "satellite"; repo = "satellite";
rev = "refs/tags/v${version}"; 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 distro
pysnmp pysnmp
pysnmplib
python-gnupg python-gnupg
qrcode qrcode
requests requests
@ -50,10 +54,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Blockstream Satellite CLI"; description = "Blockstream Satellite CLI";
mainProgram = "blocksat-cli";
homepage = "https://github.com/Blockstream/satellite"; homepage = "https://github.com/Blockstream/satellite";
changelog = "https://github.com/Blockstream/satellite/releases/tag/v${version}"; changelog = "https://github.com/Blockstream/satellite/releases/tag/v${version}";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ prusnak ]; maintainers = with maintainers; [ prusnak ];
mainProgram = "blocksat-cli";
}; };
} }