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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1007 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
2018-11-14 10:04:18 +03:00
2021-03-04 06:58:45 +03:00
python3Packages.buildPythonApplication rec {
2018-11-14 10:04:18 +03:00
pname = "broadlink-cli";
2024-04-17 21:28:45 +03:00
version = "0.19.0";
2018-11-14 10:04:18 +03: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";
2022-05-25 04:59:51 +03:00
rev = "refs/tags/${version}";
2024-04-17 21:28:45 +03:00
sha256 = "sha256-fqhi4K8Ceh8Rs0ExteCfAuVfEamFjMCjCFm6DRAJDmI=";
2018-11-14 10:04:18 +03:00
};
format = "other";
propagatedBuildInputs = with python3Packages; [
2018-11-14 10:04:18 +03:00
broadlink
];
installPhase = ''
runHook preInstall
2021-03-04 06:58:45 +03:00
install -Dm555 -t $out/bin cli/broadlink_{cli,discovery}
install -Dm444 -t $out/share/doc/broadlink cli/README.md
2018-11-14 10:04:18 +03:00
runHook postInstall
'';
meta = with lib; {
2018-11-14 10:04:18 +03: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 10:04:18 +03:00
};
}