diff options
author | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
---|---|---|
committer | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
commit | b6714f59cce26ddc831ca4a213e8f56476184fb1 (patch) | |
tree | 48abe892298c6d9e77d48e9de7d848af9beee71d /pkgs/development/python-modules/azure-cli-interactive |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-interactive')
-rw-r--r-- | pkgs/development/python-modules/azure-cli-interactive/default.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-cli-interactive/default.nix b/pkgs/development/python-modules/azure-cli-interactive/default.nix new file mode 100644 index 0000000..b6afa8e --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-interactive/default.nix @@ -0,0 +1,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 ]; + }; +} |