python3Packages.ec2instanceconnectcli: fix build, add missing cryptography dep

This commit is contained in:
Jonathan Ringer 2021-04-07 13:09:07 -07:00 committed by Jonathan Ringer
parent 141ece8fe2
commit 547cbbe6a4

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, boto3 }: { lib, buildPythonPackage, fetchPypi, boto3, cryptography }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ec2instanceconnectcli"; pname = "ec2instanceconnectcli";
@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "sha256-VaCyCnEhSx1I3bNo57p0IXf92+tO1tT7KSUXzO1IyIU="; sha256 = "sha256-VaCyCnEhSx1I3bNo57p0IXf92+tO1tT7KSUXzO1IyIU=";
}; };
propagatedBuildInputs = [ boto3 ]; propagatedBuildInputs = [ boto3 cryptography ];
# has no tests # has no tests
doCheck = false; doCheck = false;