Merge pull request #278178 from JamieMagee/sharp-aquos-rc

python311Packages.sharp-aquos-rc: init at 0.4
This commit is contained in:
Martin Weinelt 2024-01-28 21:41:09 +01:00 committed by GitHub
commit 8d7c656c18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pyyaml
}:
buildPythonPackage rec {
pname = "sharp-aquos-rc";
version = "0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "jmoore987";
repo = "sharp_aquos_rc";
rev = "refs/tags/${version}";
hash = "sha256-w/XA58iT/pmNCy9up5fayjxBsevzgr8ImKgPiNtYHAM=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ pyyaml ];
# No tests
doCheck = false;
pythonImportsCheck = [ "sharp_aquos_rc" ];
meta = with lib; {
homepage = "https://github.com/jmoore987/sharp_aquos_rc";
description = "Control Sharp Aquos SmartTVs through the IP interface";
changelog = "https://github.com/jmoore987/sharp_aquos_rc/releases/tag/${version}";
maintainers = with maintainers; [ jamiemagee ];
license = licenses.mit;
};
}

View file

@ -226,7 +226,8 @@
aqualogic
];
"aquostv" = ps: with ps; [
]; # missing inputs: sharp_aquos_rc
sharp-aquos-rc
];
"aranet" = ps: with ps; [
aioesphomeapi
aiohttp-cors

View file

@ -13186,6 +13186,8 @@ self: super: with self; {
sharkiq = callPackage ../development/python-modules/sharkiq { };
sharp-aquos-rc = callPackage ../development/python-modules/sharp-aquos-rc { };
shazamio = callPackage ../development/python-modules/shazamio { };
sh = callPackage ../development/python-modules/sh { };