feat(third_party/python): Vendor broadlink-python using git-subtree
This commit is contained in:
parent
9d94a727b2
commit
b597a1c143
2 changed files with 3 additions and 10 deletions
15
third_party/python/broadlink/default.nix
vendored
Normal file
15
third_party/python/broadlink/default.nix
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# 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";
|
||||
src = ./.;
|
||||
propagatedBuildInputs = [ cryptography ];
|
||||
}))
|
||||
Loading…
Add table
Add a link
Reference in a new issue