Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / bluepy / default.nix
blob11930050ba346f2087b3e0a2f0c97d54753e782c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pkg-config
5 , glib
6 }:
8 buildPythonPackage rec {
9   pname = "bluepy";
10   version = "1.3.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1v0wjy1rz0rbwghr1z3xhdm06lqn9iig6vr5j2wmymh3w6pysw9a";
15   };
17   buildInputs = [ glib ];
18   nativeBuildInputs = [ pkg-config ];
20   # tests try to access hardware
21   checkPhase = ''
22     $out/bin/blescan --help > /dev/null
23     $out/bin/sensortag --help > /dev/null
24     $out/bin/thingy52 --help > /dev/null
25   '';
26   pythonImportsCheck = [ "bluepy" ];
28   meta = with lib; {
29     description = "Python interface to Bluetooth LE on Linux";
30     homepage = "https://github.com/IanHarvey/bluepy";
31     maintainers = with maintainers; [ georgewhewell ];
32     platforms = platforms.linux;
33     license = licenses.gpl2;
34   };