anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-dns / default.nix
blob3fda65ab752445c14b58ad506580be617c6948dc
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9   setuptools,
10   typing-extensions,
13 buildPythonPackage rec {
14   pname = "azure-mgmt-dns";
15   version = "8.2.0";
16   pyproject = true;
18   disabled = pythonOlder "3.8";
20   src = fetchPypi {
21     pname = "azure_mgmt_dns";
22     inherit version;
23     hash = "sha256-Ynueo98L94qJWsrcUUjeyEwomAY7+qv/+LFLqpg7WW4=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     azure-common
30     azure-mgmt-core
31     isodate
32     typing-extensions
33   ];
35   # this is still needed for when the version is overrided
36   pythonNamespaces = [ "azure.mgmt" ];
38   # Tests are only available in the mono-repo
39   doCheck = false;
41   meta = with lib; {
42     description = "This is the Microsoft Azure DNS Management Client Library";
43     homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-dns";
44     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-dns_${version}/sdk/network/azure-mgmt-dns/CHANGELOG.md";
45     license = licenses.mit;
46     maintainers = with maintainers; [ maxwilson ];
47   };