blob: 4b6cd4d382340adeb4b0950d472de7f22ab5cdc7 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pymiele";
version = "0.5.3";
pyproject = true;
disabled = pythonOlder "3.13";
src = fetchPypi {
inherit pname version;
hash = "sha256-sz8yNyh8cmgmnElEhjw7yUUUiG6bpdB4LXze6ZWFjMo=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# No tests
doCheck = false;
pythonImportsCheck = [ "pymiele" ];
meta = with lib; {
changelog = "https://github.com/astrandb/pymiele/releases/tag/v${version}";
description = "Lib for Miele integration with Home Assistant";
homepage = "https://github.com/astrandb/pymiele";
license = licenses.mit;
maintainers = with maintainers; [ jamiemagee ];
};
}
|