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