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