summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/python-firetv/default.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-10-14 16:02:12 +0200
committerlassulus <lassulus@lassul.us>2019-10-14 16:02:12 +0200
commit7f7ce8077e4fa6fa023c63c4d1444576179859c3 (patch)
tree12e48733a1b1dbbcd3dc9d9aa72dba0393b666e7 /makefu/5pkgs/python-firetv/default.nix
parent539f4f09fc31552f58b0d32eec2a7b22000d3939 (diff)
parent8273bcc77c83307faec8963a48758cd51ad044ac (diff)
Merge remote-tracking branch 'gum/19.09' into 19.09
Diffstat (limited to 'makefu/5pkgs/python-firetv/default.nix')
-rw-r--r--makefu/5pkgs/python-firetv/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/makefu/5pkgs/python-firetv/default.nix b/makefu/5pkgs/python-firetv/default.nix
deleted file mode 100644
index 593f4e71..00000000
--- a/makefu/5pkgs/python-firetv/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib, pkgs, python2Packages, ... }:
-# requires libusb1 from unstable
-with python2Packages; let
-
- python-adb = buildPythonPackage rec {
- pname = "adb";
- version = "1.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0v4my47ikgkbq04gdllpx6kql5cfh7dnpq2fk72x03z74mqri7v8";
- };
-
- propagatedBuildInputs = [ libusb1 m2crypto ];
- meta = {
- homepage = https://github.com/google/python-adb;
- description = "Python ADB + Fastboot implementation";
- license = lib.licenses.asl20;
- };
- };
-in
- buildPythonPackage rec {
- name = "python-firetv-${version}";
- version = "1.0.5";
-
- src = pkgs.fetchFromGitHub {
- owner = "happyleavesaoc";
- repo = "python-firetv";
- # rev = version;
- rev = "55406c6";
- sha256 = "1r2yighilchs0jvcvbngkjxkk7gp588ikcl64x7afqzxc6zxv7wp";
- };
-
- 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;
- };
-}