From b6714f59cce26ddc831ca4a213e8f56476184fb1 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Mon, 10 Sep 2018 18:33:48 +0200 Subject: initial commit --- .../python-modules/azure-cli-container/default.nix | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/azure-cli-container/default.nix (limited to 'pkgs/development/python-modules/azure-cli-container/default.nix') diff --git a/pkgs/development/python-modules/azure-cli-container/default.nix b/pkgs/development/python-modules/azure-cli-container/default.nix new file mode 100644 index 0000000..a7a33f9 --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-container/default.nix @@ -0,0 +1,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 ]; + }; +} -- cgit v1.2.3