nixpkgs/pkgs/by-name/az/azure-cli/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

420 lines
13 KiB
Nix
Raw Normal View History

2023-09-28 22:38:38 +00:00
{
lib,
callPackage,
2023-12-17 14:34:08 +00:00
callPackages,
stdenvNoCC,
fetchurl,
2023-09-28 22:38:38 +00:00
fetchFromGitHub,
runCommand,
2023-09-28 22:38:38 +00:00
installShellFiles,
python3,
writeScriptBin,
2023-12-14 21:17:46 +00:00
# Whether to include patches that enable placing certain behavior-defining
# configuration files in the Nix store.
withImmutableConfig ? true,
2023-12-17 14:34:08 +00:00
# List of extensions/plugins to include.
withExtensions ? [ ],
azure-cli,
2023-09-28 22:38:38 +00:00
}:
2019-10-23 10:07:42 +00:00
let
version = "2.63.0";
2021-01-28 03:54:52 +00:00
2019-10-23 10:07:42 +00:00
src = fetchFromGitHub {
name = "azure-cli-${version}-src";
2019-10-23 10:07:42 +00:00
owner = "Azure";
repo = "azure-cli";
rev = "azure-cli-${version}";
hash = "sha256-HpWdEZAMnAkB07fnE7IrA0FqpBYKChqojxwAo8RfuQs=";
2019-10-23 10:07:42 +00:00
};
2022-12-18 00:39:44 +00:00
# put packages that needs to be overridden in the py package scope
py = callPackage ./python-packages.nix { inherit src version python3; };
2023-12-17 14:34:08 +00:00
# Builder for Azure CLI extensions. Extensions are Python wheels that
# outside of nix would be fetched by the CLI itself from various sources.
mkAzExtension =
{
pname,
version,
url,
sha256,
description,
...
}@args:
python3.pkgs.buildPythonPackage (
{
2023-12-17 14:34:08 +00:00
format = "wheel";
src = fetchurl { inherit url sha256; };
meta = {
2023-12-17 14:34:08 +00:00
inherit description;
inherit (azure-cli.meta) platforms maintainers;
homepage = "https://github.com/Azure/azure-cli-extensions";
changelog = "https://github.com/Azure/azure-cli-extensions/blob/main/src/${pname}/HISTORY.rst";
license = lib.licenses.mit;
sourceProvenance = [ lib.sourceTypes.fromSource ];
} // args.meta or { };
}
// (removeAttrs args [
"url"
"sha256"
"description"
"meta"
])
);
2023-12-17 14:34:08 +00:00
extensions =
callPackages ./extensions-generated.nix { inherit mkAzExtension; }
// callPackages ./extensions-manual.nix {
inherit mkAzExtension;
python3Packages = python3.pkgs;
};
2023-12-17 14:34:08 +00:00
extensionDir = stdenvNoCC.mkDerivation {
name = "azure-cli-extensions";
dontUnpack = true;
installPhase =
let
namePaths = map (p: "${p.pname},${p}/${python3.sitePackages}") withExtensions;
in
''
for line in ${lib.concatStringsSep " " namePaths}; do
name=$(echo $line | cut -d',' -f1)
path=$(echo $line | cut -d',' -f2)
mkdir -p $out/$name
for f in $(ls $path); do
ln -s $path/$f $out/$name/$f
done
done
'';
};
2019-10-23 10:07:42 +00:00
in
py.pkgs.toPythonApplication (
py.pkgs.buildAzureCliPackage rec {
2019-10-23 10:07:42 +00:00
pname = "azure-cli";
inherit version src;
sourceRoot = "${src.name}/src/azure-cli";
2019-10-23 10:07:42 +00:00
2023-09-28 22:38:38 +00:00
nativeBuildInputs = [ installShellFiles ];
2019-10-23 10:07:42 +00:00
2024-07-13 12:48:31 +00:00
# Dependencies from:
# https://github.com/Azure/azure-cli/blob/azure-cli-2.62.0/src/azure-cli/setup.py#L52
# Please, keep ordered by upstream file order. It facilitates reviews.
2019-10-23 10:07:42 +00:00
propagatedBuildInputs =
with py.pkgs;
[
antlr4-python3-runtime
2020-09-28 18:13:29 +00:00
azure-appconfiguration
2019-10-23 10:07:42 +00:00
azure-batch
azure-cli-core
azure-cosmos
2022-06-06 23:13:10 +00:00
azure-data-tables
2019-10-23 10:07:42 +00:00
azure-datalake-store
azure-graphrbac
2020-09-28 18:13:29 +00:00
azure-keyvault-administration
2023-04-17 22:29:20 +00:00
azure-keyvault-certificates
azure-keyvault-keys
2023-04-17 22:29:20 +00:00
azure-keyvault-secrets
2019-10-23 10:07:42 +00:00
azure-mgmt-advisor
azure-mgmt-apimanagement
azure-mgmt-appconfiguration
2023-04-17 22:29:20 +00:00
azure-mgmt-appcontainers
azure-mgmt-applicationinsights
2019-10-23 10:07:42 +00:00
azure-mgmt-authorization
azure-mgmt-batchai
2024-07-13 12:48:31 +00:00
azure-mgmt-batch
2019-10-23 10:07:42 +00:00
azure-mgmt-billing
azure-mgmt-botservice
azure-mgmt-cdn
azure-mgmt-cognitiveservices
azure-mgmt-compute
azure-mgmt-containerinstance
azure-mgmt-containerregistry
azure-mgmt-containerservice
azure-mgmt-cosmosdb
2020-12-30 22:33:08 +00:00
azure-mgmt-databoxedge
2019-10-23 10:07:42 +00:00
azure-mgmt-datamigration
azure-mgmt-devtestlabs
azure-mgmt-dns
azure-mgmt-eventgrid
azure-mgmt-eventhub
2021-07-08 20:34:22 +00:00
azure-mgmt-extendedlocation
2019-10-23 10:07:42 +00:00
azure-mgmt-hdinsight
azure-mgmt-imagebuilder
azure-mgmt-iotcentral
azure-mgmt-iothub
azure-mgmt-iothubprovisioningservices
azure-mgmt-keyvault
azure-mgmt-kusto
azure-mgmt-loganalytics
azure-mgmt-managedservices
2024-07-13 12:48:31 +00:00
azure-mgmt-managementgroups
2019-10-23 10:07:42 +00:00
azure-mgmt-maps
azure-mgmt-marketplaceordering
azure-mgmt-media
azure-mgmt-monitor
azure-mgmt-msi
azure-mgmt-netapp
azure-mgmt-policyinsights
azure-mgmt-privatedns
azure-mgmt-rdbms
azure-mgmt-recoveryservicesbackup
2024-07-13 12:48:31 +00:00
azure-mgmt-recoveryservices
2019-10-23 10:07:42 +00:00
azure-mgmt-redis
2024-07-13 12:48:31 +00:00
azure-mgmt-redhatopenshift
2019-10-23 10:07:42 +00:00
azure-mgmt-resource
azure-mgmt-search
azure-mgmt-security
azure-mgmt-servicebus
2021-05-06 06:46:40 +00:00
azure-mgmt-servicefabricmanagedclusters
2021-11-20 23:16:12 +00:00
azure-mgmt-servicelinker
2024-07-13 12:48:31 +00:00
azure-mgmt-servicefabric
azure-mgmt-signalr
2019-10-23 10:07:42 +00:00
azure-mgmt-sqlvirtualmachine
2024-07-13 12:48:31 +00:00
azure-mgmt-sql
2019-10-23 10:07:42 +00:00
azure-mgmt-storage
2020-09-02 20:56:54 +00:00
azure-mgmt-synapse
2019-10-23 10:07:42 +00:00
azure-mgmt-trafficmanager
azure-mgmt-web
2024-07-13 12:48:31 +00:00
azure-monitor-query
2019-10-23 10:07:42 +00:00
azure-multiapi-storage
2023-09-28 22:38:38 +00:00
azure-storage-common
2020-09-02 20:56:54 +00:00
azure-synapse-accesscontrol
2020-11-02 17:45:29 +00:00
azure-synapse-artifacts
2021-09-12 01:43:54 +00:00
azure-synapse-managedprivateendpoints
2020-09-02 20:56:54 +00:00
azure-synapse-spark
2022-06-06 23:13:10 +00:00
chardet
2019-10-23 10:07:42 +00:00
colorama
2024-07-13 12:48:31 +00:00
]
++ lib.optional stdenv.isLinux distro
++ [
fabric
javaproperties
jsondiff
packaging
pycomposefile
pygithub
2022-01-17 06:51:36 +00:00
pynacl
2019-10-23 10:07:42 +00:00
scp
2021-03-11 20:00:18 +00:00
semver
2019-10-23 10:07:42 +00:00
six
sshtunnel
tabulate
2019-10-23 10:07:42 +00:00
urllib3
websocket-client
2019-10-23 10:07:42 +00:00
xmltodict
2024-07-13 12:48:31 +00:00
# Other dependencies
pyopenssl # Used at: https://github.com/Azure/azure-cli/blob/azure-cli-2.62.0/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py#L11
setuptools # ModuleNotFoundError: No module named 'pkg_resources'
]
++ lib.optionals (!withImmutableConfig) [
# pip is required to install extensions locally, but it's not needed if
# we're using the default immutable configuration.
pip
]
++ lib.concatMap (extension: extension.propagatedBuildInputs) withExtensions;
2019-10-23 10:07:42 +00:00
postInstall =
''
2021-04-27 17:43:07 +00:00
substituteInPlace az.completion.sh \
--replace register-python-argcomplete ${py.pkgs.argcomplete}/bin/register-python-argcomplete
2019-10-23 10:07:42 +00:00
installShellCompletion --bash --name az.bash az.completion.sh
installShellCompletion --zsh --name _az az.completion.sh
2023-12-14 21:17:46 +00:00
''
+ lib.optionalString withImmutableConfig ''
export HOME=$TMPDIR
$out/bin/az --version
mkdir -p $out/etc/azure
mv $TMPDIR/.azure/commandIndex.json $out/etc/azure/commandIndex.json
mv $TMPDIR/.azure/versionCheck.json $out/etc/azure/versionCheck.json
''
+ ''
2019-10-23 10:07:42 +00:00
# remove garbage
rm $out/bin/az.bat
rm $out/bin/az.completion.sh
'';
# wrap the executable so that the python packages are available
# it's just a shebang script which calls `python -m azure.cli "$@"`
postFixup =
''
wrapProgram $out/bin/az \
2023-12-14 21:17:46 +00:00
''
+ lib.optionalString withImmutableConfig ''
--set AZURE_IMMUTABLE_DIR $out/etc/azure \
2023-12-17 14:34:08 +00:00
''
+ lib.optionalString (withExtensions != [ ]) ''
--set AZURE_EXTENSION_DIR ${extensionDir} \
2023-12-14 21:17:46 +00:00
''
+ ''
--set PYTHONPATH "${python3.pkgs.makePythonPath propagatedBuildInputs}:$out/${python3.sitePackages}"
2019-10-23 10:07:42 +00:00
'';
doInstallCheck = true;
installCheckPhase = ''
export HOME=$TMPDIR
$out/bin/az --version
$out/bin/az self-test
2019-10-23 10:07:42 +00:00
'';
# ensure these namespaces are able to be accessed
pythonImportsCheck = [
"azure.batch"
"azure.cli.core"
"azure.cli.telemetry"
"azure.cosmos"
"azure.datalake.store"
"azure.graphrbac"
"azure.keyvault"
"azure.mgmt.advisor"
"azure.mgmt.apimanagement"
"azure.mgmt.applicationinsights"
"azure.mgmt.appconfiguration"
2023-04-17 22:29:20 +00:00
"azure.mgmt.appcontainers"
2019-10-23 10:07:42 +00:00
"azure.mgmt.authorization"
"azure.mgmt.batch"
"azure.mgmt.batchai"
"azure.mgmt.billing"
"azure.mgmt.botservice"
"azure.mgmt.cdn"
"azure.mgmt.cognitiveservices"
"azure.mgmt.compute"
"azure.mgmt.containerinstance"
"azure.mgmt.containerregistry"
"azure.mgmt.containerservice"
"azure.mgmt.cosmosdb"
"azure.mgmt.datamigration"
"azure.mgmt.devtestlabs"
"azure.mgmt.dns"
"azure.mgmt.eventgrid"
"azure.mgmt.eventhub"
"azure.mgmt.hdinsight"
"azure.mgmt.imagebuilder"
"azure.mgmt.iotcentral"
"azure.mgmt.iothub"
"azure.mgmt.iothubprovisioningservices"
"azure.mgmt.keyvault"
"azure.mgmt.kusto"
"azure.mgmt.loganalytics"
"azure.mgmt.managedservices"
"azure.mgmt.managementgroups"
"azure.mgmt.maps"
"azure.mgmt.marketplaceordering"
"azure.mgmt.media"
"azure.mgmt.monitor"
"azure.mgmt.msi"
"azure.mgmt.netapp"
"azure.mgmt.policyinsights"
"azure.mgmt.privatedns"
"azure.mgmt.rdbms"
"azure.mgmt.recoveryservices"
"azure.mgmt.recoveryservicesbackup"
"azure.mgmt.redis"
"azure.mgmt.resource"
"azure.mgmt.search"
"azure.mgmt.security"
"azure.mgmt.servicebus"
"azure.mgmt.servicefabric"
"azure.mgmt.signalr"
"azure.mgmt.sql"
"azure.mgmt.sqlvirtualmachine"
"azure.mgmt.storage"
"azure.mgmt.trafficmanager"
"azure.mgmt.web"
2024-07-13 12:48:31 +00:00
"azure.monitor.query"
2019-10-23 10:07:42 +00:00
"azure.storage.common"
];
2023-12-17 14:34:08 +00:00
passthru = {
inherit extensions;
withExtensions = extensions: azure-cli.override { withExtensions = extensions; };
tests = {
# Test the package builds with some extensions configured, and the
# wanted extensions are recognized by the CLI and listed in the output.
azWithExtensions =
let
extensions = with azure-cli.extensions; [
aks-preview
azure-devops
rdbms-connect
];
extensionNames = map (ext: ext.pname) extensions;
az = (azure-cli.withExtensions extensions);
in
runCommand "test-az-with-extensions" { } ''
export HOME=$TMPDIR
${lib.getExe az} extension list > $out
for ext in ${lib.concatStringsSep " " extensionNames}; do
if ! grep -q $ext $out; then
echo "Extension $ext not found in list"
exit 1
fi
done
'';
# Test the package builds with mutable config.
# TODO: Maybe we can install an extension from local python wheel to
# check mutable extension install still works.
azWithMutableConfig =
let
az = azure-cli.override { withImmutableConfig = false; };
in
runCommand "test-az-with-immutable-config" { } ''
export HOME=$TMPDIR
${lib.getExe az} --version || exit 1
touch $out
'';
2024-07-10 09:29:38 +00:00
};
generate-extensions = writeScriptBin "${pname}-update-extensions" ''
export FILE=extensions-generated.nix
echo "# This file is automatically generated. DO NOT EDIT! Read README.md" > $FILE
echo "{ mkAzExtension }:" >> $FILE
echo "{" >> $FILE
${./query-extension-index.sh} --requirements=false --download --nix --cli-version=${version} \
| xargs -n1 -d '\n' echo " " >> $FILE
echo "" >> $FILE
echo "}" >> $FILE
echo "Extension was saved to \"extensions-generated.nix\" file."
echo "Move it to \"{nixpkgs}/pkgs/by-name/az/azure-cli/extensions-generated.nix\"."
'';
};
2023-12-17 14:34:08 +00:00
2024-07-13 15:02:45 +00:00
meta = {
2019-10-23 10:07:42 +00:00
homepage = "https://github.com/Azure/azure-cli";
description = "Next generation multi-platform command line experience for Azure";
downloadPage = "https://github.com/Azure/azure-cli/releases/tag/azure-cli-${version}";
longDescription = ''
The Azure Command-Line Interface (CLI) is a cross-platform
command-line tool to connect to Azure and execute administrative
commands on Azure resources. It allows the execution of commands
through a terminal using interactive command-line prompts or a script.
`azure-cli` has extension support. For example, to install the `aks-preview` extension, use
```nix
environment.systemPackages = [
(azure-cli.withExtensions [ azure-cli.extensions.aks-preview ])
];
```
To make the `azure-cli` immutable and prevent clashes in case `azure-cli` is also installed via other package managers,
some configuration files were moved into the derivation. This can be disabled by overriding `withImmutableConfig = false`
when building `azure-cli`.
'';
changelog = "https://github.com/MicrosoftDocs/azure-docs-cli/blob/main/docs-ref-conceptual/release-notes-azure-cli.md";
2024-07-13 15:02:45 +00:00
sourceProvenance = [ lib.sourceTypes.fromSource ];
license = lib.licenses.mit;
mainProgram = "az";
2024-07-13 15:02:45 +00:00
maintainers = with lib.maintainers; [ katexochen ] ++ lib.teams.stridtech.members;
platforms = lib.platforms.all;
2019-10-23 10:07:42 +00:00
};
}
)