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