lol

python3Packages.ec2instanceconnectcli: fix build, add missing cryptography dep

authored by

Jonathan Ringer and committed by
Jonathan Ringer
547cbbe6 141ece8f

+2 -2
+2 -2
pkgs/tools/virtualization/ec2instanceconnectcli/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, boto3 }: 1 + { lib, buildPythonPackage, fetchPypi, boto3, cryptography }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "ec2instanceconnectcli"; ··· 9 9 sha256 = "sha256-VaCyCnEhSx1I3bNo57p0IXf92+tO1tT7KSUXzO1IyIU="; 10 10 }; 11 11 12 - propagatedBuildInputs = [ boto3 ]; 12 + propagatedBuildInputs = [ boto3 cryptography ]; 13 13 14 14 # has no tests 15 15 doCheck = false;