{ lib , aliyun-python-sdk-core , buildPythonPackage , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "aliyun-python-sdk-iot"; version = "8.45.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-9vLc+Rp81P28lCs6KM8Dmt97lPlhnWd6hqZZDTdQEGk="; }; propagatedBuildInputs = [ aliyun-python-sdk-core ]; # All components are stored in a mono repo doCheck = false; pythonImportsCheck = [ "aliyunsdkiot" ]; meta = with lib; { description = "IoT module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }