blob: 7ec0ba604f7112d248c9c233f92f3082600f2781 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pyserial,
}:
buildPythonPackage rec {
pname = "pykwb";
version = "0.0.10";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-mor2TKhq08w4HzaUaspWOMEFwJaAKjXKoNAaoZJqWPQ=";
};
propagatedBuildInputs = [ pyserial ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pykwb" ];
meta = {
description = "Library for interacting with KWB Easyfire Pellet Central Heating Units";
homepage = "https://github.com/bimbar/pykwb";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|