Skip to content

Commit

Permalink
Merge pull request #109586 from fabaff/awsiotpythonsdk
Browse files Browse the repository at this point in the history
python3Packages.awsiotpythonsdk: init at 1.4.9
  • Loading branch information
SuperSandro2000 committed Jan 17, 2021
2 parents a303f9f + 4ee7a23 commit 517cb0d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/python-modules/awsiotpythonsdk/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,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 { };
Expand Down

0 comments on commit 517cb0d

Please sign in to comment.