Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-cdn / default.nix
blob3b6c5fd88b7bfc04c40f9bfb8b4c3ea828aa3800
1 { lib
2 , azure-common
3 , azure-mgmt-core
4 , buildPythonPackage
5 , fetchPypi
6 , isodate
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-cdn";
12   version = "13.0.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-yJ8jTeT4Gu23YSHl5GZ0+zdlC3s+GIxS4ir8z/HBkA4=";
20   };
22   propagatedBuildInputs = [
23     isodate
24     azure-common
25     azure-mgmt-core
26   ];
28   # has no tests
29   doCheck = false;
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   };