blob: 707c70e16b21cced7768006e4197750240b499d5 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "luxtronik";
version = "0.3.14";
format = "setuptools";
src = fetchFromGitHub {
owner = "Bouni";
repo = "python-luxtronik";
rev = version;
hash = "sha256-7TuvqOAb/MUumOF6BKTRLOJuvteqZPmFUXXsuwEpmOM=";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "luxtronik" ];
meta = {
description = "Python library to interact with Luxtronik heatpump controllers";
homepage = "https://github.com/Bouni/python-luxtronik";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|