37 lines
1007 B
Nix
37 lines
1007 B
Nix
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "broadlink-cli";
|
|
version = "0.18.2";
|
|
|
|
# the tools are available as part of the source distribution from GH but
|
|
# not pypi, so we have to fetch them here.
|
|
src = fetchFromGitHub {
|
|
owner = "mjg59";
|
|
repo = "python-broadlink";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-JX+Io5EP1OgtP7T+UQtkfCPWE1rd3MTrCYRhU9C0+0c=";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
broadlink
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm555 -t $out/bin cli/broadlink_{cli,discovery}
|
|
install -Dm444 -t $out/share/doc/broadlink cli/README.md
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tools for interfacing with Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs";
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (python3Packages.broadlink.meta) homepage license;
|
|
};
|
|
}
|