2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-04-26 16:52:21 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bluepy";
|
|
|
|
version = "1.3.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1v0wjy1rz0rbwghr1z3xhdm06lqn9iig6vr5j2wmymh3w6pysw9a";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
# tests try to access hardware
|
|
|
|
checkPhase = ''
|
|
|
|
$out/bin/blescan --help > /dev/null
|
|
|
|
$out/bin/sensortag --help > /dev/null
|
|
|
|
$out/bin/thingy52 --help > /dev/null
|
|
|
|
'';
|
|
|
|
pythonImportsCheck = [ "bluepy" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-26 16:52:21 +01:00
|
|
|
description = "Python interface to Bluetooth LE on Linux";
|
|
|
|
homepage = "https://github.com/IanHarvey/bluepy";
|
|
|
|
maintainers = with maintainers; [ georgewhewell ];
|
2021-01-05 21:52:23 +00:00
|
|
|
platforms = platforms.linux;
|
2020-04-26 16:52:21 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|