Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / lightblue / default.nix
blobfeb2718124431987e9527e114f33df540635e401
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , pkgs
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "lightblue";
10   version = "0.4";
11   disabled = isPy3k; # build fails, 2018-04-11
13   src = fetchurl {
14     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
15     sha256 = "016h1mlhpqxjj25lcvl4fqc19k8ifmsv6df7rhr12fyfcrp5i14d";
16   };
18   buildInputs = [ pkgs.bluez pkgs.openobex ];
20   meta = with lib; {
21     homepage = "http://lightblue.sourceforge.net";
22     description = "Cross-platform Bluetooth API for Python";
23     maintainers = with maintainers; [ leenaars ];
24     license = licenses.gpl3;
25   };