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-ams |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-ams')
-rw-r--r-- | pkgs/development/python-modules/azure-cli-ams/default.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-cli-ams/default.nix b/pkgs/development/python-modules/azure-cli-ams/default.nix new file mode 100644 index 0000000..f463648 --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-ams/default.nix @@ -0,0 +1,33 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-cli-command-modules-nspkg +, azure-cli-core +, azure-graphrbac +, azure-mgmt-media +}: + +buildPythonPackage rec { + pname = "azure_cli_ams"; + version = "0.2.3"; + format = "wheel"; + + src = fetchPypi { + inherit pname version format; + sha256 = "1bds3843dpib3xhdw2nyagryhnn22hcq44pm4kgkrsgg47b3yqi7"; + }; + + propagatedBuildInputs = [ + azure-cli-command-modules-nspkg + azure-cli-core + azure-graphrbac + azure-mgmt-media + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Command-Line Tools AMS Command Module"; + homepage = https://github.com/Azure/azure-cli; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} |