about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pybluez/default.nix
blob: 6ceca20fdd1717b9a358116f0eaef73675c2de8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, pkgs
}:

buildPythonPackage rec {
  version = "unstable-20160819";
  pname = "pybluez";

  propagatedBuildInputs = [ pkgs.bluez ];

  src = fetchFromGitHub {
    owner = "karulis";
    repo = "${pname}";
    rev = "a0b226a61b166e170d48539778525b31e47a4731";
    sha256 = "104dm5ngfhqisv1aszdlr3szcav2g3bhsgzmg4qfs09b3i5zj047";
  };

  # the tests do not pass
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Bluetooth Python extension module";
    license = licenses.gpl2;
    maintainers = with maintainers; [ leenaars ];
  };

}