blob: fc553fe5461e6899f6d4c786e1d432d39072adab (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 ];
};
}
|