blob: 1de147641d4bce8435dc6569fdcda3846ed34e7a (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aioblescan";
version = "0.2.14";
format = "setuptools";
src = fetchFromGitHub {
owner = "frawau";
repo = "aioblescan";
tag = version;
hash = "sha256-JeA9jX566OSRiejdnlifbcNGm0J0C+xzA6zXDUyZ6jc=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "aioblescan" ];
meta = {
description = "Library to listen for BLE advertized packets";
mainProgram = "aioblescan";
homepage = "https://github.com/frawau/aioblescan";
changelog = "https://github.com/frawau/aioblescan/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|