pythonPackages.broadlink: add missing cryptography dep
This commit is contained in:
parent
2efeffb97b
commit
1bf17675c9
@ -1,5 +1,5 @@
|
||||
{ lib, fetchPypi, buildPythonPackage
|
||||
, pyaes, pycrc }:
|
||||
, cryptography, pyaes, pycrc }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "broadlink";
|
||||
@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||
--replace pyaes==1.6.0 pyaes
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ pyaes pycrc ];
|
||||
propagatedBuildInputs = [ cryptography pyaes pycrc ];
|
||||
|
||||
# no tests available
|
||||
doCheck = false;
|
||||
|
Loading…
Reference in New Issue
Block a user