mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
gatt: init at 0.2.6
This commit is contained in:
parent
4392899832
commit
f07e1733af
32
pkgs/development/python-modules/gatt/default.nix
Normal file
32
pkgs/development/python-modules/gatt/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, dbus-python
|
||||
, pygobject3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gatt";
|
||||
version = "0.2.6";
|
||||
|
||||
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";
|
||||
homepage = "https://github.com/getsenic/gatt-python/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ tomfitzhenry ];
|
||||
};
|
||||
}
|
@ -3414,6 +3414,8 @@ in {
|
||||
|
||||
garages-amsterdam = callPackage ../development/python-modules/garages-amsterdam { };
|
||||
|
||||
gatt = callPackage ../development/python-modules/gatt { };
|
||||
|
||||
gattlib = callPackage ../development/python-modules/gattlib {
|
||||
inherit (pkgs) bluez glib pkg-config;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user