mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 00:54:40 +00:00
python311Packages.azure-mgmt-postgresqlflexibleservers: init at 1.0.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
7514add199
commit
1b81e76e40
pkgs
development/python-modules/azure-mgmt-postgresqlflexibleservers
top-level
@ -0,0 +1,46 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
wheel,
|
||||
azure-common,
|
||||
azure-mgmt-core,
|
||||
isodate,
|
||||
typing-extensions,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-mgmt-postgresqlflexibleservers";
|
||||
version = "1.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "azure_mgmt_postgresqlflexibleservers";
|
||||
inherit version;
|
||||
hash = "sha256-5aSpnUCTol+L1w7XZp6d2QRN+LxGOpUUztiMQqkD55E=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
azure-common
|
||||
azure-mgmt-core
|
||||
isodate
|
||||
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 = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
@ -1289,6 +1289,8 @@ self: super: with self; {
|
||||
|
||||
azure-mgmt-policyinsights = callPackage ../development/python-modules/azure-mgmt-policyinsights { };
|
||||
|
||||
azure-mgmt-postgresqlflexibleservers = callPackage ../development/python-modules/azure-mgmt-postgresqlflexibleservers { };
|
||||
|
||||
azure-mgmt-powerbiembedded = callPackage ../development/python-modules/azure-mgmt-powerbiembedded { };
|
||||
|
||||
azure-mgmt-privatedns = callPackage ../development/python-modules/azure-mgmt-privatedns { };
|
||||
|
Loading…
Reference in New Issue
Block a user