pythonPackages.firetv: init at 1.0.9
This commit is contained in:
parent
273dd192c0
commit
2dad6f4836
38
pkgs/development/python-modules/firetv/default.nix
Normal file
38
pkgs/development/python-modules/firetv/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, adb-homeassistant
|
||||||
|
, flask
|
||||||
|
, pure-python-adb-homeassistant
|
||||||
|
, pycryptodome
|
||||||
|
, pyyaml
|
||||||
|
, rsa
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "firetv";
|
||||||
|
version = "1.0.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "602de77411c2caffb322e4ff63fa6cc4eeb9a50c5f4b14e13930ed7cd87cf513";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
adb-homeassistant
|
||||||
|
flask
|
||||||
|
pure-python-adb-homeassistant
|
||||||
|
pycryptodome
|
||||||
|
pyyaml
|
||||||
|
rsa
|
||||||
|
];
|
||||||
|
|
||||||
|
# No Tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Communicate with an Amazon Fire TV device via ADB over a network";
|
||||||
|
homepage = https://github.com/happyleavesaoc/python-firetv/;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.makefu ];
|
||||||
|
};
|
||||||
|
}
|
@ -384,6 +384,8 @@ in {
|
|||||||
|
|
||||||
fire = callPackage ../development/python-modules/fire { };
|
fire = callPackage ../development/python-modules/fire { };
|
||||||
|
|
||||||
|
firetv = callPackage ../development/python-modules/firetv { };
|
||||||
|
|
||||||
fdint = callPackage ../development/python-modules/fdint { };
|
fdint = callPackage ../development/python-modules/fdint { };
|
||||||
|
|
||||||
fuse = callPackage ../development/python-modules/fuse-python {
|
fuse = callPackage ../development/python-modules/fuse-python {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user