python313Packages.pymitsubishi: 0.1.8 -> 0.3.0

Changelog: https://github.com/pymitsubishi/pymitsubishi/releases/tag/v0.3.0

Changed files
+8 -4
pkgs
development
python-modules
pymitsubishi
+8 -4
pkgs/development/python-modules/pymitsubishi/default.nix
···
setuptools,
requests,
pycryptodome,
+
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pymitsubishi";
-
version = "0.1.8";
+
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pymitsubishi";
repo = "pymitsubishi";
tag = "v${version}";
-
hash = "sha256-hawPxP8WqpHUikmbcSFIjSeSTNyWu1zYtgT/TCPbOro=";
+
hash = "sha256-cfLKFvhzLN9dM0cMogCL93LVfRd8jDFo9x+nnEWInSc=";
};
build-system = [ setuptools ];
···
pycryptodome
];
-
nativeCheckInputs = [ pytestCheckHook ];
+
nativeCheckInputs = [
+
pytest-cov-stub
+
pytestCheckHook
+
];
pythonImportsCheck = [ "pymitsubishi" ];
meta = {
-
description = "A Python library for controlling and monitoring Mitsubishi MAC-577IF-2E air conditioners";
+
description = "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;