blob: 083894116408ddfe70d4d4d408ddc964a75d1f41 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
btlewrap,
bluepy,
}:
buildPythonPackage rec {
pname = "beewi-smartclim";
version = "0.0.10";
pyproject = true;
src = fetchFromGitHub {
owner = "alemuro";
repo = "beewi_smartclim";
tag = version;
hash = "sha256-xdr545Q4DFhup2BCMZZ1WYWgt97qT6oipIHWcsp90+A=";
};
build-system = [ setuptools ];
dependencies = [
btlewrap
bluepy
];
# No tests available
doCheck = false;
pythonImportsCheck = [ "beewi_smartclim" ];
meta = {
description = "Library to read data from BeeWi SmartClim sensor using Bluetooth LE";
homepage = "https://github.com/alemuro/beewi_smartclim";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|