aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-cli-acs/default.nix
blob: 7dd0a10bea481b9f6d0eb54a1dd74acfcc3a8ac1 (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
42
43
44
45
46
47
{ stdenv, buildPythonPackage, fetchPypi
, azure-cli-command-modules-nspkg
, azure-cli-core
, azure-graphrbac
, azure-mgmt-authorization
, azure-mgmt-compute
, azure-mgmt-containerservice
, paramiko
, pyyaml
, scp
, six
, sshtunnel
}:

buildPythonPackage rec {
  pname = "azure_cli_acs";
  version = "2.0.34";
  format = "wheel";

  src = fetchPypi {
    inherit pname version format;
    sha256 = "1cbgbn3iii8bxy844kvgzrgpy8b89djj69gxmj4m7vlfvzjcawgc";
  };

  propagatedBuildInputs = [
    azure-cli-command-modules-nspkg
    azure-cli-core
    azure-graphrbac
    azure-mgmt-authorization
    azure-mgmt-compute
    azure-mgmt-containerservice
    paramiko
    pyyaml
    scp
    six
    sshtunnel
  ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Microsoft Azure Command-Line Tools ACS Command Module";
    homepage = https://github.com/Azure/azure-cli;
    license = licenses.mit;
    maintainers = with maintainers; [ stesie ];
  };
}