diff options
author | makefu <github@syntax-fehler.de> | 2019-10-13 02:30:57 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-10-13 02:30:57 +0200 |
commit | bce0555f05b261927dbbfb3e59d4ee6b927bf704 (patch) | |
tree | 83b0fbad71af71cc7c88573032524ea70e0478e5 /makefu/5pkgs | |
parent | 8a5837f86c72c13129e4c6c1bb6904e1fd0ae29e (diff) |
move shack prometheus from wolf to puyak
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r-- | makefu/5pkgs/python-firetv/default.nix | 40 |
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 593f4e718..000000000 --- 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; - }; -} |