evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / warble / default.nix
blobda0aa6c92563c2341d18032b6fafc775df3bf1fa
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   cython,
6   boost,
7   bluez,
8 }:
10 buildPythonPackage rec {
11   pname = "warble";
12   version = "1.2.9";
13   format = "setuptools";
15   enableParallelBuilding = true;
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-oezcRD1AddWmDYDxueE0EwK0+UN/EZ5GQxwkdCz4xoY=";
20   };
22   nativeBuildInputs = [ cython ];
24   buildInputs = [
25     boost
26     bluez
27   ];
29   pythonImportsCheck = [
30     "mbientlab"
31     "mbientlab.warble"
32   ];
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   };