1{ lib, buildPythonPackage, fetchPypi, boto3, cryptography }: 2 3buildPythonPackage rec { 4 pname = "ec2instanceconnectcli"; 5 version = "1.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "sha256-VaCyCnEhSx1I3bNo57p0IXf92+tO1tT7KSUXzO1IyIU="; 10 }; 11 12 propagatedBuildInputs = [ boto3 cryptography ]; 13 14 # has no tests 15 doCheck = false; 16 17 pythonImportsCheck = [ "ec2instanceconnectcli" ]; 18 19 meta = with lib; { 20 description = "Command Line Interface for AWS EC2 Instance Connect"; 21 homepage = "https://github.com/aws/aws-ec2-instance-connect-cli"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ yurrriq ]; 24 }; 25}