blob: bbbf81d71d1824fb8a326347c88140458ba4036b (
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
|
{
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
lib,
}:
buildPythonPackage rec {
pname = "bosch-alarm-mode2";
version = "0.4.6";
pyproject = true;
src = fetchFromGitHub {
owner = "mag1024";
repo = "bosch-alarm-mode2";
tag = "v${version}";
hash = "sha256-oTGkEguN4EFJI5+UhqxKBN1x2Ppf9wQ0AeYbiLi1fhk=";
};
build-system = [
hatch-vcs
hatchling
];
pythonImportsCheck = [ "bosch_alarm_mode2" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Async Python library for interacting with Bosch Alarm Panels supporting the 'Mode 2' API";
homepage = "https://github.com/mag1024/bosch-alarm-mode2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|