diff options
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-appservice')
| -rw-r--r-- | pkgs/development/python-modules/azure-cli-appservice/default.nix | 45 | 
1 files changed, 45 insertions, 0 deletions
| diff --git a/pkgs/development/python-modules/azure-cli-appservice/default.nix b/pkgs/development/python-modules/azure-cli-appservice/default.nix new file mode 100644 index 0000000..9937369 --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-appservice/default.nix @@ -0,0 +1,45 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-cli-command-modules-nspkg +, azure-cli-core +, azure-mgmt-containerregistry +, azure-mgmt-storage +, azure-mgmt-web +, pyopenssl +, six +, urllib3 +, vsts-cd-manager +, xmltodict +}: + +buildPythonPackage rec { +  pname = "azure_cli_appservice"; +  version = "0.1.36"; +  format = "wheel"; + +  src = fetchPypi { +    inherit pname version format; +    sha256 = "0ghi4yi2x22gk64sx7sivpvnvqcvjjchckydla1glicr1piwzn7a"; +  }; + +  propagatedBuildInputs = [ +    azure-cli-command-modules-nspkg +    azure-cli-core +    azure-mgmt-containerregistry +    azure-mgmt-storage +    azure-mgmt-web +    pyopenssl +    six +    urllib3 +    vsts-cd-manager +    xmltodict +  ]; + +  doCheck = false; + +  meta = with stdenv.lib; { +    description = "Microsoft Azure Command-Line Tools AppService Command Module"; +    homepage = https://github.com/Azure/azure-cli; +    license = licenses.mit; +    maintainers = with maintainers; [ stesie ]; +  }; +} | 
