Files
2026-03-03 16:44:10 +01:00

49 lines
917 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
azure-common,
azure-mgmt-core,
isodate,
msrest,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-mgmt-postgresqlflexibleservers";
version = "3.0.0b1";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_postgresqlflexibleservers";
inherit version;
hash = "sha256-Vo1/vuxAAgVznCppDZCTygNFAMl5uopc3QbiEeFbLv8=";
};
build-system = [
setuptools
wheel
];
dependencies = [
azure-common
azure-mgmt-core
isodate
msrest
typing-extensions
];
pythonImportsCheck = [
"azure.mgmt.postgresqlflexibleservers"
];
meta = {
description = "Microsoft Azure Postgresqlflexibleservers Management Client Library for Python";
homepage = "https://pypi.org/project/azure-mgmt-postgresqlflexibleservers/";
license = lib.licenses.mit;
maintainers = [ ];
};
}