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