1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 boto3, 6 cryptography, 7}: 8 9buildPythonPackage rec { 10 pname = "ec2instanceconnectcli"; 11 version = "1.0.3"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-/U59a6od0JI27VHX+Bvue/7tQy+iwU+g8yt9/GgdoH4="; 17 }; 18 19 propagatedBuildInputs = [ 20 boto3 21 cryptography 22 ]; 23 24 # has no tests 25 doCheck = false; 26 27 pythonImportsCheck = [ "ec2instanceconnectcli" ]; 28 29 meta = with lib; { 30 description = "Command Line Interface for AWS EC2 Instance Connect"; 31 homepage = "https://github.com/aws/aws-ec2-instance-connect-cli"; 32 license = licenses.asl20; 33 maintainers = with maintainers; [ yurrriq ]; 34 }; 35}