python3Packages.raspyrfm-client: 1.2.8 -> 1.2.9

Diff: https://github.com/markusressel/raspyrfm-client/compare/1.2.8...1.2.9

Changelog: https://github.com/markusressel/raspyrfm-client/releases/tag/1.2.9
This commit is contained in:
Robert Schütz
2025-10-31 08:55:41 -07:00
parent 49df0d02ed
commit 6c106807eb
@@ -2,51 +2,36 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
rstr,
python,
poetry-core,
pytestCheckHook,
xeger,
}:
buildPythonPackage rec {
pname = "raspyrfm-client";
version = "1.2.8";
version = "1.2.9";
pyproject = true;
src = fetchFromGitHub {
owner = "markusressel";
repo = "raspyrfm-client";
tag = "v${version}";
hash = "sha256-WiL69bb4h8xVdMYxAVU0NHEfTWyW2NVR86zigsr5dmk=";
tag = version;
hash = "sha256-+TraMrVoR8GXrjfjJnu1uyyW6KTnu8KrRqAHYU8thFw=";
};
# while we may not actually be on master, the script needs a git branch to function
# and master here is better than beta or pre-alpha
postPatch = ''
substituteInPlace ./setup.py \
--replace-fail 'subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"])' '"master"' \
--replace-fail 'GIT_BRANCH.decode()' '"master"' \
--replace-fail 'GIT_BRANCH.rstrip()' '"master"'
'';
build-system = [ setuptools ];
build-system = [ poetry-core ];
pythonImportsCheck = [ "raspyrfm_client" ];
nativeCheckInputs = [ rstr ];
# pytestCheckHook does not auto detect the only test, run manually
checkPhase = ''
runHook preCheck
${python.interpreter} tests/automatic_tests.py
runHook postCheck
'';
nativeCheckInputs = [
pytestCheckHook
xeger
];
meta = {
description = "Send rc signals with the RaspyRFM module";
homepage = "https://github.com/markusressel/raspyrfm-client";
changelog = "https://github.com/markusressel/raspyrfm-client/releases/tag/v${version}";
changelog = "https://github.com/markusressel/raspyrfm-client/releases/tag/${src.tag}";
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}