python3Packages.pymitsubishi: init at 0.1.7

This commit is contained in:
Nikita Uvarov
2025-08-01 09:13:07 +02:00
parent 7f35dc79bd
commit 94ec2250d7
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
pycryptodome,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pymitsubishi";
version = "0.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "pymitsubishi";
repo = "pymitsubishi";
tag = "v${version}";
hash = "sha256-tEmhllXvUwiJG1q7MyBrHPVVxzcZYgzTHzD8jnqfXvA=";
};
build-system = [ setuptools ];
dependencies = [
requests
pycryptodome
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pymitsubishi" ];
meta = {
description = "A Python library for controlling and monitoring Mitsubishi MAC-577IF-2E air conditioners";
homepage = "https://github.com/pymitsubishi/pymitsubishi";
changelog = "https://github.com/pymitsubishi/pymitsubishi/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ uvnikita ];
};
}
+2
View File
@@ -13256,6 +13256,8 @@ self: super: with self; {
pymilvus = callPackage ../development/python-modules/pymilvus { };
pymitsubishi = callPackage ../development/python-modules/pymitsubishi { };
pymitv = callPackage ../development/python-modules/pymitv { };
pymodbus = callPackage ../development/python-modules/pymodbus { };