python312Packages.azure-mgmt-dns: 8.1.0 -> 8.2.0 (#350330)

This commit is contained in:
Fabian Affolter 2024-10-31 09:30:15 +01:00 committed by GitHub
commit c7cae3ee18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,43 +1,48 @@
{
lib,
buildPythonPackage,
fetchPypi,
msrest,
msrestazure,
azure-common,
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
isodate,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-mgmt-dns";
version = "8.1.0";
format = "setuptools";
version = "8.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-2DedS7kZS4G3nlKE2HX6bfgHBzRvLLtcVJGiDzUmb9A=";
pname = "azure_mgmt_dns";
inherit version;
hash = "sha256-Ynueo98L94qJWsrcUUjeyEwomAY7+qv/+LFLqpg7WW4=";
};
propagatedBuildInputs = [
msrest
msrestazure
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
isodate
typing-extensions
];
# this is still needed for when the version is overrided
pythonNamespaces = [ "azure.mgmt" ];
# has no tests
# Tests are only available in the mono-repo
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure DNS Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-dns";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-dns_${version}/sdk/network/azure-mgmt-dns/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [
maxwilson
];
maintainers = with maintainers; [ maxwilson ];
};
}