Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / gatt / default.nix
blob9543aa6a5e04c42d97f86c3dff8f93b1bf3fd98f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , dbus-python
5 , pygobject3
6 }:
8 buildPythonPackage rec {
9   pname = "gatt";
10   version = "0.2.6";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "getsenic";
15     repo = "gatt-python";
16     rev = version;
17     hash = "sha256-GMLqQ9ojQ649hbbJB+KiQoOhiTWweOgv6zaCDzhIB5A=";
18   };
20   propagatedBuildInputs = [
21     dbus-python
22     pygobject3
23   ];
25   pythonImportsCheck = [ "gatt" ];
27   meta = with lib; {
28     description = "Bluetooth (Generic Attribute Profile) GATT SDK for Python";
29     mainProgram = "gattctl";
30     homepage = "https://github.com/getsenic/gatt-python/";
31     license = licenses.mit;
32     maintainers = with maintainers; [ ];
33   };