pythonPackages.azure-mgmt-resource-templatespecs: init at 1.0.0b1

This commit is contained in:
Ulrik Strid
2025-09-02 16:18:45 +02:00
parent 42d2e3c07e
commit d7b49d0548
2 changed files with 58 additions and 0 deletions
@@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchPypi,
azure-mgmt-core,
azure-common,
isodate,
pythonOlder,
setuptools,
typing-extensions,
azure-cli,
}:
buildPythonPackage rec {
pname = "azure-mgmt-resource-templatespecs";
version = "1.0.0b1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "azure_mgmt_resource_templatespecs";
inherit version;
hash = "sha256-D55zmrQ9sq2HDq5d8bXEv6BQC76hxuWKpeLpw4X6y8U=";
};
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
isodate
typing-extensions
];
# Module has no tests
doCheck = false;
pythonNamespaces = [
"azure.mgmt.resource.templatespecs"
];
pythonImportsCheck = [
"azure.mgmt.resource.templatespecs"
];
meta = with lib; {
description = "Microsoft Azure SDK for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-templatespecs";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-templatespecs_${version}/sdk/resources/azure-mgmt-resource-templatespecs/CHANGELOG.md";
license = licenses.mit;
maintainers = azure-cli.meta.maintainers;
};
}
+4
View File
@@ -1540,6 +1540,10 @@ self: super: with self; {
callPackage ../development/python-modules/azure-mgmt-resource-deploymentstacks
{ };
azure-mgmt-resource-templatespecs =
callPackage ../development/python-modules/azure-mgmt-resource-templatespecs
{ };
azure-mgmt-scheduler = callPackage ../development/python-modules/azure-mgmt-scheduler { };
azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { };