depot/third_party/nixpkgs/pkgs/development/python-modules/gatt/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

35 lines
705 B
Nix

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