Commit 42d2e3c0 authored by Ulrik Strid's avatar Ulrik Strid
Browse files

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

parent 3a85b2c2
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  azure-mgmt-core,
  azure-common,
  isodate,
  pythonOlder,
  setuptools,
  typing-extensions,
  azure-cli,
}:

buildPythonPackage rec {
  pname = "azure-mgmt-resource-deploymentstacks";
  version = "1.0.0b1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    pname = "azure_mgmt_resource_deploymentstacks";
    inherit version;
    hash = "sha256-Sbh25FwPW6uI7EfXxW6Ps0+9/P5bgxo6KiHoF/PZcy4=";
  };

  build-system = [ setuptools ];

  dependencies = [
    azure-common
    azure-mgmt-core
    isodate
    typing-extensions
  ];

  # Module has no tests
  doCheck = false;

  pythonNamespaces = [
    "azure.mgmt.resource.deploymentstacks"
  ];

  pythonImportsCheck = [
    "azure.mgmt.resource.deploymentstacks"
  ];

  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-deploymentstacks";
    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-deploymentstacks_${version}/sdk/resources/azure-mgmt-resource-deploymentstacks/CHANGELOG.md";
    license = licenses.mit;
    maintainers = azure-cli.meta.maintainers;
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -1536,6 +1536,10 @@ self: super: with self; {
    callPackage ../development/python-modules/azure-mgmt-resource-deploymentscripts
      { };
  azure-mgmt-resource-deploymentstacks =
    callPackage ../development/python-modules/azure-mgmt-resource-deploymentstacks
      { };
  azure-mgmt-scheduler = callPackage ../development/python-modules/azure-mgmt-scheduler { };
  azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { };