python311Packages.azure-mgmt-compute: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-25 17:22:35 +02:00
parent e0faedcb21
commit c9a3a3870e

View File

@ -1,11 +1,12 @@
{ lib {
, azure-mgmt-common lib,
, azure-mgmt-core azure-mgmt-common,
, buildPythonPackage azure-mgmt-core,
, fetchPypi buildPythonPackage,
, isodate fetchPypi,
, pythonOlder isodate,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -20,9 +21,7 @@ buildPythonPackage rec {
hash = "sha256-WlscT8GhnssCKhLe0b6LGxVfaXnQP7nvwEZC9gZkS78="; hash = "sha256-WlscT8GhnssCKhLe0b6LGxVfaXnQP7nvwEZC9gZkS78=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
azure-mgmt-common azure-mgmt-common
@ -30,22 +29,21 @@ buildPythonPackage rec {
isodate isodate
]; ];
pythonNamespaces = [ pythonNamespaces = [ "azure.mgmt" ];
"azure.mgmt"
];
# Module has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "azure.mgmt.compute" ];
"azure.mgmt.compute"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Compute Management Client Library"; description = "This is the Microsoft Azure Compute Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-compute"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-compute";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md"; changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ olcai maxwilson ]; maintainers = with maintainers; [
olcai
maxwilson
];
}; };
} }