blob: 4f1e19ac6bd9cd8cccb67b2593c1507a511f1897 (
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.6.1";
pyproject = true;
disabled = pythonOlder "3.13";
src = fetchPypi {
inherit pname version;
hash = "sha256-IqKJhuAT8UYStqy+2NQ9u4ezHBPum6vNnN42+hq7kZc=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# No tests
doCheck = false;
pythonImportsCheck = [ "pymiele" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ jamiemagee ];
};
}
|