python3Packages.awsiotpythonsdk: init at 1.4.9

gstqt5
Fabian Affolter 2021-01-17 00:23:29 +01:00
parent e1545d42aa
commit 4ee7a233e1
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "AWSIoTPythonSDK";
version = "1.4.9";
src = fetchFromGitHub {
owner = "aws";
repo = "aws-iot-device-sdk-python";
rev = "v${version}";
sha256 = "0mbppz1lnia4br5vjz1l4z4vw47y3bzcfpckzhs9lxhj4vq6d001";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "AWSIoTPythonSDK" ];
meta = with lib; {
description = "Python SDK for connecting to AWS IoT";
homepage = "https://github.com/aws/aws-iot-device-sdk-python";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -558,6 +558,8 @@ in {
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
awsiotpythonsdk = callPackage ../development/python-modules/awsiotpythonsdk { };
axis = callPackage ../development/python-modules/axis { };
azure-appconfiguration = callPackage ../development/python-modules/azure-appconfiguration { };