2020-04-25 18:57:33 +02:00
|
|
|
# Python package for controlling the Broadlink RM Pro Infrared
|
|
|
|
# controller.
|
|
|
|
#
|
|
|
|
# https://github.com/mjg59/python-broadlink
|
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (pkgs) fetchFromGitHub;
|
|
|
|
inherit (pkgs.python3Packages) buildPythonPackage cryptography;
|
|
|
|
in buildPythonPackage (lib.fix (self: {
|
|
|
|
pname = "python-broadlink";
|
|
|
|
version = "0.13.2";
|
2020-04-25 22:38:42 +02:00
|
|
|
src = ./.;
|
2020-04-25 18:57:33 +02:00
|
|
|
propagatedBuildInputs = [ cryptography ];
|
|
|
|
}))
|