3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/bleak/default.nix

38 lines
1 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, isPy3k, fetchPypi
, bluez, dbus-next, pytestCheckHook, pytest-cov
}:
2020-05-15 21:18:33 +01:00
buildPythonPackage rec {
pname = "bleak";
version = "0.11.0";
2020-05-15 21:18:33 +01:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1zs5lz3r17a2xn19i4na132iccyjsl9navj0d3v7gks7hlcad5kp";
2020-05-15 21:18:33 +01:00
};
postPatch = ''
# bleak checks BlueZ's version with a call to `bluetoothctl -v` twice
substituteInPlace bleak/__init__.py \
--replace \"bluetoothctl\" \"${bluez}/bin/bluetoothctl\"
substituteInPlace bleak/backends/bluezdbus/client.py \
--replace \"bluetoothctl\" \"${bluez}/bin/bluetoothctl\"
'';
propagatedBuildInputs = [ dbus-next ];
2020-05-15 21:18:33 +01:00
checkInputs = [ pytestCheckHook pytest-cov ];
pythonImportsCheck = [ "bleak" ];
2020-05-15 21:18:33 +01:00
meta = with lib; {
2020-05-15 21:18:33 +01:00
description = "Bluetooth Low Energy platform Agnostic Klient for Python";
homepage = "https://github.com/hbldh/bleak";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ oxzi ];
2020-05-15 21:18:33 +01:00
};
}