nixpkgs/pkgs/development/python-modules/gatt/default.nix
2022-07-22 20:12:02 +10:00

33 lines
662 B
Nix

{ 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 ];
};
}