Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 40 lines 888 B view raw
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.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; 17 18 src = fetchPypi { 19 pname = "azure_mgmt_cdn"; 20 inherit version; 21 hash = "sha256-Igpr2snnXkwAyEGlnY3j7JAQ4LnhQS3snmwka2GeO/I="; 22 }; 23 24 propagatedBuildInputs = [ 25 isodate 26 azure-common 27 azure-mgmt-core 28 ]; 29 30 # has no tests 31 doCheck = false; 32 33 meta = with lib; { 34 description = "This is the Microsoft Azure CDN Management Client Library"; 35 homepage = "https://github.com/Azure/azure-sdk-for-python"; 36 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cdn_${version}/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ maxwilson ]; 39 }; 40}