Merge pull request #110629 from yurrriq/add-ec2instanceconnectcli

ec2instanceconnectcli: init at 1.0.2
This commit is contained in:
Sandro 2021-01-26 23:39:27 +01:00 committed by GitHub
commit 4a2db77951
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, boto3 }:
buildPythonPackage rec {
pname = "ec2instanceconnectcli";
version = "1.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-VaCyCnEhSx1I3bNo57p0IXf92+tO1tT7KSUXzO1IyIU=";
};
propagatedBuildInputs = [ boto3 ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "ec2instanceconnectcli" ];
meta = with lib; {
description = "Command Line Interface for AWS EC2 Instance Connect";
homepage = "https://github.com/aws/aws-ec2-instance-connect-cli";
license = licenses.apsl20;
maintainers = with maintainers; [ yurrriq ];
};
}

View file

@ -2001,6 +2001,8 @@ in {
easywatch = callPackage ../development/python-modules/easywatch { };
ec2instanceconnectcli = callPackage ../tools/virtualization/ec2instanceconnectcli { };
eccodes = toPythonModule (pkgs.eccodes.override {
enablePython = true;
pythonPackages = self;