Files
nixpkgs/pkgs/development/python-modules/firetv/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

42 lines
822 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
adb-homeassistant,
flask,
pure-python-adb-homeassistant,
pycryptodome,
pyyaml,
rsa,
}:
buildPythonPackage rec {
pname = "firetv";
version = "1.0.9";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "602de77411c2caffb322e4ff63fa6cc4eeb9a50c5f4b14e13930ed7cd87cf513";
};
propagatedBuildInputs = [
adb-homeassistant
flask
pure-python-adb-homeassistant
pycryptodome
pyyaml
rsa
];
# No Tests
doCheck = false;
meta = {
description = "Communicate with an Amazon Fire TV device via ADB over a network";
mainProgram = "firetv-server";
homepage = "https://github.com/happyleavesaoc/python-firetv/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.makefu ];
};
}