python312Packages.pydevccu: 0.1.8 -> 0.1.9

Diff: https://github.com/SukramJ/pydevccu/compare/refs/tags/0.1.8...0.1.9

Changelog: https://github.com/SukramJ/pydevccu/releases/tag/0.1.9
This commit is contained in:
Robert Schütz
2025-01-01 10:49:36 -08:00
parent bcaae99469
commit e7e5b31fe4
@@ -8,18 +8,23 @@
buildPythonPackage rec {
pname = "pydevccu";
version = "0.1.8";
version = "0.1.9";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "danielperna84";
owner = "SukramJ";
repo = "pydevccu";
rev = "refs/tags/${version}";
hash = "sha256-WguSTtWxkiDs5nK5eiaarfD0CBxzIxQR9fxjuW3wMGc=";
tag = version;
hash = "sha256-s1u9+w0sPpXuqAET4k5VPWP+VoPqB08dZa9oY4UFXc8=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools==75.6.0" setuptools
'';
build-system = [ setuptools ];
# Module has no tests
@@ -29,8 +34,8 @@ buildPythonPackage rec {
meta = {
description = "HomeMatic CCU XML-RPC Server with fake devices";
homepage = "https://github.com/danielperna84/pydevccu";
changelog = "https://github.com/danielperna84/pydevccu/releases/tag/${version}";
homepage = "https://github.com/SukramJ/pydevccu";
changelog = "https://github.com/SukramJ/pydevccu/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};