blob: 178594e4483d910f3c03da96d470dfe04ce51502 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyyaml,
}:
buildPythonPackage rec {
pname = "sharp-aquos-rc";
version = "0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "jmoore987";
repo = "sharp_aquos_rc";
tag = version;
hash = "sha256-w/XA58iT/pmNCy9up5fayjxBsevzgr8ImKgPiNtYHAM=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ pyyaml ];
# No tests
doCheck = false;
pythonImportsCheck = [ "sharp_aquos_rc" ];
meta = {
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 lib.maintainers; [ jamiemagee ];
license = lib.licenses.mit;
};
}
|