2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
2018-11-14 07:04:18 +00:00
|
|
|
|
2020-10-30 14:33:00 +00:00
|
|
|
python3Packages.buildPythonApplication {
|
2018-11-14 07:04:18 +00:00
|
|
|
pname = "broadlink-cli";
|
2020-10-30 14:33:00 +00:00
|
|
|
inherit (python3Packages.broadlink) version;
|
2018-11-14 07:04:18 +00:00
|
|
|
|
|
|
|
# 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";
|
2020-10-30 14:33:00 +00:00
|
|
|
# this rev is version 0.15.0
|
|
|
|
rev = "99add9e6feea6e47be4f3a58783556d7838b759c";
|
|
|
|
sha256 = "1q1q62brvfjcb18i0j4ca5cxqzjwv1iywdrdby0yjqa4wm6ywq6b";
|
2018-11-14 07:04:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
2020-10-30 14:33:00 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2018-11-14 07:04:18 +00:00
|
|
|
broadlink
|
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm755 -t $out/bin cli/broadlink_{cli,discovery}
|
|
|
|
install -Dm644 -t $out/share/doc/broadlink cli/README.md
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-14 07:04:18 +00:00
|
|
|
description = "Tools for interfacing with Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs";
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2020-10-30 14:33:00 +00:00
|
|
|
inherit (python3Packages.broadlink.meta) homepage license;
|
2018-11-14 07:04:18 +00:00
|
|
|
};
|
|
|
|
}
|