aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-cli-consumption
diff options
context:
space:
mode:
authorStefan Siegl <stesie@brokenpipe.de>2018-09-10 18:33:48 +0200
committerStefan Siegl <stesie@brokenpipe.de>2018-09-10 18:33:48 +0200
commitb6714f59cce26ddc831ca4a213e8f56476184fb1 (patch)
tree48abe892298c6d9e77d48e9de7d848af9beee71d /pkgs/development/python-modules/azure-cli-consumption
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-consumption')
-rw-r--r--pkgs/development/python-modules/azure-cli-consumption/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-cli-consumption/default.nix b/pkgs/development/python-modules/azure-cli-consumption/default.nix
new file mode 100644
index 0000000..4e0822d
--- /dev/null
+++ b/pkgs/development/python-modules/azure-cli-consumption/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, azure-cli-command-modules-nspkg
+, azure-cli-core
+, azure-mgmt-consumption
+}:
+
+buildPythonPackage rec {
+ pname = "azure_cli_consumption";
+ version = "0.4.0";
+ format = "wheel";
+
+ src = fetchPypi {
+ inherit pname version format;
+ sha256 = "12a9bkv2irp7hk6zl3ci3nw9bahz4cqkbfhz9cllbaq1mcwc6wsf";
+ };
+
+ propagatedBuildInputs = [
+ azure-cli-command-modules-nspkg
+ azure-cli-core
+ azure-mgmt-consumption
+ ];
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Microsoft Azure Command-Line Tools Consumption Command Module";
+ homepage = https://github.com/Azure/azure-cli;
+ license = licenses.mit;
+ maintainers = with maintainers; [ stesie ];
+ };
+}