blob: 0535985b324e2b4d495b98a418e546b18154a21b (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
dbus-python,
pygobject3,
}:
buildPythonPackage rec {
pname = "gatt";
version = "0.2.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "getsenic";
repo = "gatt-python";
rev = version;
hash = "sha256-GMLqQ9ojQ649hbbJB+KiQoOhiTWweOgv6zaCDzhIB5A=";
};
propagatedBuildInputs = [
dbus-python
pygobject3
];
pythonImportsCheck = [ "gatt" ];
meta = {
description = "Bluetooth (Generic Attribute Profile) GATT SDK for Python";
mainProgram = "gattctl";
homepage = "https://github.com/getsenic/gatt-python/";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|