1{ 2 lib, 3 azure-common, 4 azure-mgmt-core, 5 buildPythonPackage, 6 fetchPypi, 7 isodate, 8 pythonOlder, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-cdn"; 13 version = "13.1.1"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; 17 18 src = fetchPypi { 19 inherit pname version; 20 hash = "sha256-RmMwTzG2Zy3sMgx857qXFcK5nn2LaEs3XwtO/9qQIQw="; 21 }; 22 23 propagatedBuildInputs = [ 24 isodate 25 azure-common 26 azure-mgmt-core 27 ]; 28 29 # has no tests 30 doCheck = false; 31 32 meta = with lib; { 33 description = "This is the Microsoft Azure CDN Management Client Library"; 34 homepage = "https://github.com/Azure/azure-sdk-for-python"; 35 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cdn_${version}/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ maxwilson ]; 38 }; 39}