about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/bluetooth_battery/default.nix
blob: 19c2f3b99a4dee1245ea2272557ff382ae5a85cc (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
30
{ lib, fetchFromGitHub, buildPythonApplication, pybluez }:

buildPythonApplication rec {
  pname = "bluetooth_battery";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "TheWeirdDev";
    repo = "Bluetooth_Headset_Battery_Level";
    rev = "v${version}";
    sha256 = "121pkaq9z8p2i35cqs32aygjvf82r961w0axirpmsrbmrwq2hh6g";
  };

  propagatedBuildInputs = [ pybluez ];

  format = "other";

  installPhase = ''
    mkdir -p $out/bin
    cp $src/bluetooth_battery.py $out/bin/bluetooth_battery
  '';

  meta = with lib; {
    description = "Fetch the battery charge level of some Bluetooth headsets";
    homepage = "https://github.com/TheWeirdDev/Bluetooth_Headset_Battery_Level";
    license = licenses.gpl3Plus;
    platforms = platforms.unix;
    maintainers = with maintainers; [ cheriimoya ];
  };
}