blob: a7a33f9e554f2d15b1ce9547e96d3e453088a4f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ stdenv, buildPythonPackage, fetchPypi
, azure-cli-command-modules-nspkg
, azure-cli-core
, azure-mgmt-containerinstance
, azure-mgmt-loganalytics
, azure-mgmt-resource
, colorama
, pyyaml
, websocket_client
}:
buildPythonPackage rec {
pname = "azure_cli_container";
version = "0.3.2";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "0aw5pmzjwm3m34p27smr9mfvrq0kan29n9mpn12rkqqgs34im3kn";
};
propagatedBuildInputs = [
azure-cli-command-modules-nspkg
azure-cli-core
azure-mgmt-containerinstance
azure-mgmt-loganalytics
azure-mgmt-resource
colorama
pyyaml
websocket_client
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Command-Line Tools container Command Module";
homepage = https://github.com/Azure/azure-cli;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|