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 |
initial commit
Diffstat (limited to 'pkgs')
114 files changed, 3858 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/applicationinsights/default.nix b/pkgs/development/python-modules/applicationinsights/default.nix new file mode 100644 index 0000000..5f97d9d --- /dev/null +++ b/pkgs/development/python-modules/applicationinsights/default.nix @@ -0,0 +1,20 @@ +{ stdenv, buildPythonPackage, fetchPypi }: + +buildPythonPackage rec { + pname = "applicationinsights"; + version = "0.11.6"; + + src = fetchPypi { + inherit pname version; + sha256 = "0b5abcdxbakqxsha6427qjwgvgh7j8p57apw495rvzm6hcv9d302"; + }; + + doCheck = false; + + meta = with stdenv.lib; { + description = "This project extends the Application Insights API surface to support Python."; + homepage = https://github.com/Microsoft/ApplicationInsights-Python; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} diff --git a/pkgs/development/python-modules/azure-batch/default.nix b/pkgs/development/python-modules/azure-batch/default.nix new file mode 100644 index 0000000..bc0d07b --- /dev/null +++ b/pkgs/development/python-modules/azure-batch/default.nix @@ -0,0 +1,31 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-nspkg +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-batch"; + version = "4.1.3"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0k1n73qpa2ns2kjsf9rjsv4b0vcdw6dggfr5c95igaxynpmwfwfd"; + }; + + propagatedBuildInputs = [ + azure-common + azure-nspkg + msrestazure + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Batch Client Library for Python"; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} diff --git a/pkgs/development/python-modules/azure-cli-acr/default.nix b/pkgs/development/python-modules/azure-cli-acr/default.nix new file mode 100644 index 0000000..a2562a7 --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-acr/default.nix @@ -0,0 +1,35 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-cli-command-modules-nspkg +, azure-cli-core +, azure-mgmt-containerregistry +, azure-mgmt-storage +, azure-storage-blob +}: + +buildPythonPackage rec { + pname = "azure_cli_acr"; + version = "2.1.0"; + format |