ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / gatt / default.nix
blob6242011b312f72a07ebc88dc8c5189a2d5cdb0c2
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , dbus-python
5 , pygobject3
6 }:
8 buildPythonPackage rec {
9   pname = "gatt";
10   version = "0.2.6";
12   src = fetchFromGitHub {
13     owner = "getsenic";
14     repo = "gatt-python";
15     rev = "${version}";
16     hash = "sha256-GMLqQ9ojQ649hbbJB+KiQoOhiTWweOgv6zaCDzhIB5A=";
17   };
19   propagatedBuildInputs = [
20     dbus-python
21     pygobject3
22   ];
24   pythonImportsCheck = [ "gatt" ];
26   meta = with lib; {
27     description = "Bluetooth (Generic Attribute Profile) GATT SDK for Python";
28     homepage = "https://github.com/getsenic/gatt-python/";
29     license = licenses.mit;
30     maintainers = with maintainers; [ tomfitzhenry ];
31   };