summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/python-firetv/default.nix
blob: 04c76ac557e7f283ce608e95e4e49e10d3d41fd7 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
{ lib, pkgs, python2Packages, ... }:
# requires libusb1 from unstable
with (import <nixpkgs-unstable> {}).python2Packages; let

 python-adb = buildPythonPackage rec {
    name = "python-adb-${version}";
    version = "1.2.0";

    src = pkgs.fetchFromGitHub {
      owner = "google";
      repo = "python-adb";
      rev = "28d912a";
      sha256 = "1cy18l96v72hrhf21im5i8hlzd8ilv0vcck026npnxiw095a5hm2";
    };

    propagatedBuildInputs = [ libusb1 m2crypto ];
    meta = {
      homepage = https://github.com/google/python-adb;
      description = "Python ADB + Fastboot implementation";
      license = lib.licenses.apache2;
    };
  };
in
 buildPythonPackage rec {
  name = "python-firetv-${version}";
  version = "1.0.5";

  src = pkgs.fetchFromGitHub {
    owner = "happyleavesaoc";
    repo = "python-firetv";
    rev = version;
    sha256 = "0j5p8jg13hc9gcbv0ipxgljrpcxk8b7k4p4kyfhmblpjm51mycs3";
  };

  propagatedBuildInputs = [ python-adb flask pyyaml ];
  meta = {
    homepage = https://github.com/happyleavesaoc/python-firetv;
    description = "provides state informations and some control of an amazon firetv";
    license = lib.licenses.mit;
  };
}