aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-cli-interactive/default.nix
blob: b6afa8e27a9a130bc9de082d606f7481875ac385 (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
{ stdenv, buildPythonPackage, fetchPypi
, applicationinsights
, azure-cli-command-modules-nspkg
, azure-cli-core
, jmespath
, prompt_toolkit
, pyyaml
, six
}:

buildPythonPackage rec {
  pname = "azure_cli_interactive";
  version = "0.3.28";
  format = "wheel";

  src = fetchPypi {
    inherit pname version format;
    sha256 = "0na9x8ivwdzkqf61v3h785sllhwjanl5c8v6pqvbj4cqcwpjd7lp";
  };

  propagatedBuildInputs = [
    applicationinsights
    azure-cli-command-modules-nspkg
    azure-cli-core
    jmespath
    prompt_toolkit
    pyyaml
    six
  ];

  doCheck = false;

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