pythonPackages.bluepy: init at 1.3.0
This commit is contained in:
parent
ca2fd28d83
commit
9c716aa71a
|
@ -0,0 +1,35 @@
|
||||||
|
{ stdenv
|
||||||
|
, 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" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python interface to Bluetooth LE on Linux";
|
||||||
|
homepage = "https://github.com/IanHarvey/bluepy";
|
||||||
|
maintainers = with maintainers; [ georgewhewell ];
|
||||||
|
license = licenses.gpl2;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -518,6 +518,8 @@ in {
|
||||||
|
|
||||||
blivet = callPackage ../development/python-modules/blivet { };
|
blivet = callPackage ../development/python-modules/blivet { };
|
||||||
|
|
||||||
|
bluepy = callPackage ../development/python-modules/bluepy { };
|
||||||
|
|
||||||
boltons = callPackage ../development/python-modules/boltons { };
|
boltons = callPackage ../development/python-modules/boltons { };
|
||||||
|
|
||||||
bravia-tv = callPackage ../development/python-modules/bravia-tv { };
|
bravia-tv = callPackage ../development/python-modules/bravia-tv { };
|
||||||
|
|
Loading…
Reference in New Issue