Files
2026-02-22 02:11:16 +01:00

49 lines
890 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
azure-common,
azure-mgmt-core,
isodate,
msrest,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-mgmt-mysqlflexibleservers";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_mysqlflexibleservers";
inherit version;
hash = "sha256-0HemVoiKXFl39HmiRKZKxKHTUQAumaft2vakmoIZLlY=";
};
build-system = [
setuptools
wheel
];
dependencies = [
azure-common
azure-mgmt-core
isodate
msrest
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 = [ ];
};
}