From b6714f59cce26ddc831ca4a213e8f56476184fb1 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Mon, 10 Sep 2018 18:33:48 +0200 Subject: initial commit --- .../azure-cli-cognitiveservices/default.nix | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/development/python-modules/azure-cli-cognitiveservices/default.nix (limited to 'pkgs/development/python-modules/azure-cli-cognitiveservices') diff --git a/pkgs/development/python-modules/azure-cli-cognitiveservices/default.nix b/pkgs/development/python-modules/azure-cli-cognitiveservices/default.nix new file mode 100644 index 0000000..006551c --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-cognitiveservices/default.nix @@ -0,0 +1,31 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-cli-command-modules-nspkg +, azure-cli-core +, azure-mgmt-cognitiveservices +}: + +buildPythonPackage rec { + pname = "azure_cli_cognitiveservices"; + version = "0.2.1"; + format = "wheel"; + + src = fetchPypi { + inherit pname version format; + sha256 = "0530lppkzxvzngi9v7p1n1v6bkfnq5nj4ngrcdij9k4qhr3drmqp"; + }; + + propagatedBuildInputs = [ + azure-cli-command-modules-nspkg + azure-cli-core + azure-mgmt-cognitiveservices + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Command-Line Tools Cognitive Services Command Module"; + homepage = https://github.com/azure/azure-cli; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} -- cgit v1.2.3