python312Packages.azure-mgmt-privatedns: 1.1.0 -> 1.2.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-privatedns_1.2.0/sdk/network/azure-mgmt-privatedns/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2024-09-23 21:50:56 +02:00
parent 6c1d5c9985
commit 8b7c867b89

View File

@ -5,30 +5,32 @@
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchPypi,
isodate, isodate,
msrest,
pythonOlder, pythonOlder,
setuptools,
typing-extensions, typing-extensions,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-privatedns"; pname = "azure-mgmt-privatedns";
version = "1.1.0"; version = "1.2.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; pname = "azure_mgmt_privatedns";
hash = "sha256-MtucYFpKj/ANNON1UdXrBrTsJnq53iph3SJ1ypWj+5g="; inherit version;
extension = "zip"; hash = "sha256-NCMYcvAblPYZXY7lQo4XRpJS7QTqCCjVIyXr578KEgs=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
azure-common azure-common
azure-mgmt-core azure-mgmt-core
isodate isodate
msrest typing-extensions
] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; ];
# no tests included # no tests included
doCheck = false; doCheck = false;
@ -40,7 +42,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Microsoft Azure DNS Private Zones Client Library for Python"; description = "Microsoft Azure DNS Private Zones Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/network/azure-mgmt-privatedns";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-privatedns_${version}/sdk/network/azure-mgmt-privatedns/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = [ ]; maintainers = [ ];
}; };