diff options
author | lassulus <lassulus@lassul.us> | 2018-03-18 22:28:59 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-03-18 22:28:59 +0100 |
commit | 3b8f52f4f0ae93a5e9818e784e7f4507f72aa11e (patch) | |
tree | da6fa3e2d60ab2025cb3480f3b1621154bbed076 /makefu/5pkgs/python-firetv | |
parent | ce32c7b6d4352ac193d60100d632615c25c0198e (diff) | |
parent | 28324a02d902b0ca31a383f162c585fb8f9b2972 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/5pkgs/python-firetv')
-rw-r--r-- | makefu/5pkgs/python-firetv/default.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/makefu/5pkgs/python-firetv/default.nix b/makefu/5pkgs/python-firetv/default.nix new file mode 100644 index 000000000..1fb772f1f --- /dev/null +++ b/makefu/5pkgs/python-firetv/default.nix @@ -0,0 +1,40 @@ +{ lib, pkgs, python2Packages, ... }: +# requires libusb1 from unstable +with (import <nixpkgs-unstable> {}).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; + }; +} |