python313Packages.pyhomematic: refactor

This commit is contained in:
Fabian Affolter
2025-08-15 01:35:37 +02:00
parent e3222f1adc
commit d51e231f5f
@@ -1,32 +1,31 @@
{
lib,
buildPythonPackage,
isPy3k,
setuptools,
fetchPypi,
python,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.78";
format = "setuptools";
disabled = !isPy3k;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-uB9aDa1urIwL2DBdBwPi0sHWPW7SUZ3EaAjuMLSOudc=";
};
checkPhase = ''
${python.interpreter} -m unittest
'';
build-system = [ setuptools ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "pyhomematic" ];
meta = with lib; {
description = "Python 3 Interface to interact with Homematic devices";
homepage = "https://github.com/danielperna84/pyhomematic";
changelog = "https://github.com/danielperna84/pyhomematic/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};