9 buildPythonPackage rec {
10 pname = "awsiotpythonsdk";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "aws-iot-device-sdk-python";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-TUNIWGal7NQy2qmHVTiw6eX4t/Yt3NnM3HHztBwMfoM=";
23 nativeBuildInputs = [ setuptools ];
28 pythonImportsCheck = [ "AWSIoTPythonSDK" ];
31 description = "Python SDK for connecting to AWS IoT";
32 homepage = "https://github.com/aws/aws-iot-device-sdk-python";
33 changelog = "https://github.com/aws/aws-iot-device-sdk-python/releases/tag/v${version}";
34 license = with licenses; [ asl20 ];
35 maintainers = with maintainers; [ fab ];