Files
nixpkgs/pkgs/development/python-modules/azure-mgmt-resource-deploymentscripts/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

55 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
azure-mgmt-core,
azure-common,
isodate,
pythonOlder,
setuptools,
typing-extensions,
azure-cli,
}:
buildPythonPackage rec {
pname = "azure-mgmt-resource-deploymentscripts";
version = "1.0.0b1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "azure_mgmt_resource_deploymentscripts";
inherit version;
hash = "sha256-Vm2FWVPpSbsrNMtD4ecwVKqnkoHHRhO3Rf/duCyAI3U=";
};
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
isodate
typing-extensions
];
# Module has no tests
doCheck = false;
pythonNamespaces = [
"azure.mgmt.resource.deploymentscripts"
];
pythonImportsCheck = [
"azure.mgmt.resource.deploymentscripts"
];
meta = {
description = "Microsoft Azure SDK for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/resources/azure-mgmt-resource-deploymentscripts";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-resource-deploymentscripts_${version}/sdk/resources/azure-mgmt-resource-deploymentscripts/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = azure-cli.meta.maintainers;
};
}