mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #278178 from JamieMagee/sharp-aquos-rc
python311Packages.sharp-aquos-rc: init at 0.4
This commit is contained in:
commit
8d7c656c18
36
pkgs/development/python-modules/sharp-aquos-rc/default.nix
Normal file
36
pkgs/development/python-modules/sharp-aquos-rc/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -226,7 +226,8 @@
|
||||
aqualogic
|
||||
];
|
||||
"aquostv" = ps: with ps; [
|
||||
]; # missing inputs: sharp_aquos_rc
|
||||
sharp-aquos-rc
|
||||
];
|
||||
"aranet" = ps: with ps; [
|
||||
aioesphomeapi
|
||||
aiohttp-cors
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user