Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at lanzaboote 38 lines 855 B view raw
1{ lib 2, azure-common 3, azure-mgmt-core 4, buildPythonPackage 5, fetchPypi 6, isodate 7, pythonOlder 8}: 9 10buildPythonPackage rec { 11 pname = "azure-mgmt-cdn"; 12 version = "13.0.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.8"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-yJ8jTeT4Gu23YSHl5GZ0+zdlC3s+GIxS4ir8z/HBkA4="; 20 }; 21 22 propagatedBuildInputs = [ 23 isodate 24 azure-common 25 azure-mgmt-core 26 ]; 27 28 # has no tests 29 doCheck = false; 30 31 meta = with lib; { 32 description = "This is the Microsoft Azure CDN Management Client Library"; 33 homepage = "https://github.com/Azure/azure-sdk-for-python"; 34 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cdn_${version}/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ maxwilson ]; 37 }; 38}