Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-dns / default.nix
blobbc8d9eb9e115548c220b47c4ea732d96aab063e6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-dns";
12   version = "8.1.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "sha256-2DedS7kZS4G3nlKE2HX6bfgHBzRvLLtcVJGiDzUmb9A=";
19   };
21   propagatedBuildInputs = [
22     msrest
23     msrestazure
24     azure-common
25     azure-mgmt-core
26   ];
28   # this is still needed for when the version is overrided
29   pythonNamespaces = [ "azure.mgmt" ];
31   # has no tests
32   doCheck = false;
34   meta = with lib; {
35     description = "This is the Microsoft Azure DNS Management Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ jonringer maxwilson ];
39   };