about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pc-ble-driver-py/default.nix
diff options
context:
space:
mode:
authorSirio Balmelli <sirio@b-ad.ch>2020-07-19 23:36:27 +0200
committerSirio Balmelli <sirio@b-ad.ch>2020-07-20 20:32:53 +0200
commit2db3a7e56c2a658ecfa9b12f76b02e6aea2463ba (patch)
tree8df4f730d344443033bbf8767274da5c4d20b2ea /pkgs/development/python-modules/pc-ble-driver-py/default.nix
parente3cba5aad991a0f355545fc0b069cbf987b577d0 (diff)
python3Packages.pc-ble-driver-py: fix Darwin build
Remove udev dependency, propagate it from pc-ble-driver.
On Darwin, IOKit is propagated instead.

Depends on d6b3707c862b6bb82712bd86cd12b163fa89adcc

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
Diffstat (limited to 'pkgs/development/python-modules/pc-ble-driver-py/default.nix')
-rw-r--r--pkgs/development/python-modules/pc-ble-driver-py/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pc-ble-driver-py/default.nix b/pkgs/development/python-modules/pc-ble-driver-py/default.nix
index c8967fa5eabf3..6250b5a2202d9 100644
--- a/pkgs/development/python-modules/pc-ble-driver-py/default.nix
+++ b/pkgs/development/python-modules/pc-ble-driver-py/default.nix
@@ -16,7 +16,7 @@ buildPythonPackage rec {
   doCheck = false;
 
   nativeBuildInputs = [ cmake swig git setuptools scikit-build ];
-  buildInputs = [ boost udev pc-ble-driver ];
+  buildInputs = [ boost pc-ble-driver ];
   propagatedBuildInputs = [ enum34 wrapt future ];
 
   dontUseCmakeConfigure = true;