about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gatt/default.nix
blob: 9543aa6a5e04c42d97f86c3dff8f93b1bf3fd98f (plain) (blame)
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
{ 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 = with lib; {
    description = "Bluetooth (Generic Attribute Profile) GATT SDK for Python";
    mainProgram = "gattctl";
    homepage = "https://github.com/getsenic/gatt-python/";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}