nixpkgs/pkgs/tools/misc/broadlink-cli/default.nix

37 lines
995 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
2018-11-14 07:04:18 +00:00
2021-03-04 03:58:45 +00:00
python3Packages.buildPythonApplication rec {
2018-11-14 07:04:18 +00:00
pname = "broadlink-cli";
2021-03-14 00:15:26 +00:00
version = "0.17.0";
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";
2021-03-04 03:58:45 +00:00
rev = version;
2021-03-14 00:15:26 +00:00
sha256 = "sha256-b3A36BdIvyl1RxNO5SyxLIpQmu1UHHekyh6vrFjwpp4=";
2018-11-14 07:04:18 +00:00
};
format = "other";
propagatedBuildInputs = with python3Packages; [
2018-11-14 07:04:18 +00:00
broadlink
];
installPhase = ''
runHook preInstall
2021-03-04 03:58:45 +00:00
install -Dm555 -t $out/bin cli/broadlink_{cli,discovery}
install -Dm444 -t $out/share/doc/broadlink cli/README.md
2018-11-14 07:04:18 +00:00
runHook postInstall
'';
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 ];
inherit (python3Packages.broadlink.meta) homepage license;
2018-11-14 07:04:18 +00:00
};
}