Unverified Commit c7cae3ee authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents f0e5c928 384f4cbe
Loading
Loading
Loading
Loading
+22 −17
Original line number Diff line number Diff line
{
  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 ];
  };
}