python311Packages.azure-mgmt-mysqlflexibleservers: init at 1.0.0b2

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2024-11-11 10:02:33 +01:00
parent 1b81e76e40
commit 081a3877f9
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,46 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
azure-common,
azure-mgmt-core,
isodate,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-mgmt-mysqlflexibleservers";
version = "1.0.0b2";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_mysqlflexibleservers";
inherit version;
hash = "sha256-pL3z3s/H7OYaPiGNGdUIzo3ppp6sR/G+6iDB219Mp9A=";
};
build-system = [
setuptools
wheel
];
dependencies = [
azure-common
azure-mgmt-core
isodate
typing-extensions
];
pythonImportsCheck = [
"azure.mgmt.mysqlflexibleservers"
];
meta = {
description = "Microsoft Azure Mysqlflexibleservers Management Client Library for Python";
homepage = "https://pypi.org/project/azure-mgmt-mysqlflexibleservers/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}

View File

@ -1279,6 +1279,8 @@ self: super: with self; {
azure-mgmt-msi = callPackage ../development/python-modules/azure-mgmt-msi { };
azure-mgmt-mysqlflexibleservers = callPackage ../development/python-modules/azure-mgmt-mysqlflexibleservers { };
azure-mgmt-netapp = callPackage ../development/python-modules/azure-mgmt-netapp { };
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };