about summary refs log tree commit diff
path: root/pkgs/development/python-modules/warble/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/warble/default.nix')
-rw-r--r--pkgs/development/python-modules/warble/default.nix27
1 files changed, 16 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/warble/default.nix b/pkgs/development/python-modules/warble/default.nix
index c2c930d0f0a5..da0aa6c92563 100644
--- a/pkgs/development/python-modules/warble/default.nix
+++ b/pkgs/development/python-modules/warble/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, cython
-, boost
-, bluez
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  cython,
+  boost,
+  bluez,
 }:
 
 buildPythonPackage rec {
@@ -18,22 +19,26 @@ buildPythonPackage rec {
     hash = "sha256-oezcRD1AddWmDYDxueE0EwK0+UN/EZ5GQxwkdCz4xoY=";
   };
 
-  nativeBuildInputs = [
-    cython
-  ];
+  nativeBuildInputs = [ cython ];
 
   buildInputs = [
     boost
     bluez
   ];
 
-  pythonImportsCheck = [ "mbientlab" "mbientlab.warble" ];
+  pythonImportsCheck = [
+    "mbientlab"
+    "mbientlab.warble"
+  ];
 
   meta = with lib; {
     description = "Python bindings for MbientLab's Warble library";
     homepage = "https://github.com/mbientlab/pywarble";
     license = with licenses; [ unfree ];
     maintainers = with maintainers; [ stepbrobd ];
-    platforms = [ "aarch64-linux" "x86_64-linux" ];
+    platforms = [
+      "aarch64-linux"
+      "x86_64-linux"
+    ];
   };
 }