1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 cython,
6 boost,
7 bluez,
8}:
9
10buildPythonPackage rec {
11 pname = "warble";
12 version = "1.2.9";
13 format = "setuptools";
14
15 enableParallelBuilding = true;
16
17 src = fetchPypi {
18 inherit pname version;
19 hash = "sha256-oezcRD1AddWmDYDxueE0EwK0+UN/EZ5GQxwkdCz4xoY=";
20 };
21
22 nativeBuildInputs = [ cython ];
23
24 buildInputs = [
25 boost
26 bluez
27 ];
28
29 pythonImportsCheck = [
30 "mbientlab"
31 "mbientlab.warble"
32 ];
33
34 meta = with lib; {
35 description = "Python bindings for MbientLab's Warble library";
36 homepage = "https://github.com/mbientlab/pywarble";
37 license = with licenses; [ unfree ];
38 maintainers = with maintainers; [ stepbrobd ];
39 platforms = [
40 "aarch64-linux"
41 "x86_64-linux"
42 ];
43 };
44}