1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, pkgs
5}:
6
7buildPythonPackage rec {
8 version = "unstable-20160819";
9 pname = "pybluez";
10
11 propagatedBuildInputs = [ pkgs.bluez ];
12
13 src = fetchFromGitHub {
14 owner = "karulis";
15 repo = pname;
16 rev = "a0b226a61b166e170d48539778525b31e47a4731";
17 sha256 = "104dm5ngfhqisv1aszdlr3szcav2g3bhsgzmg4qfs09b3i5zj047";
18 };
19
20 # the tests do not pass
21 doCheck = false;
22
23 meta = with lib; {
24 description = "Bluetooth Python extension module";
25 license = licenses.gpl2;
26 maintainers = with maintainers; [ leenaars ];
27 };
28
29}