croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-cdn / default.nix
blobc98f7f9f36aab19aaab5ade6bfc9f53f8ac4bda5
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-cdn";
13   version = "13.1.1";
14   format = "setuptools";
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-RmMwTzG2Zy3sMgx857qXFcK5nn2LaEs3XwtO/9qQIQw=";
21   };
23   propagatedBuildInputs = [
24     isodate
25     azure-common
26     azure-mgmt-core
27   ];
29   # has no tests
30   doCheck = false;
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   };