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/development/python-modules/azure-cli-acr | |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-acr')
| -rw-r--r-- | pkgs/development/python-modules/azure-cli-acr/default.nix | 35 | 
1 files changed, 35 insertions, 0 deletions
| 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 = "wheel"; + +  src = fetchPypi { +    inherit pname version format; +    sha256 = "0mprxk87pmwkqbz1jd9m4kd0njgf901ghf0zzp6qwdj542hjkd5z"; +  }; + +  propagatedBuildInputs = [ +    azure-cli-command-modules-nspkg +    azure-cli-core +    azure-mgmt-containerregistry +    azure-mgmt-storage +    azure-storage-blob +  ]; + +  doCheck = false; + +  meta = with stdenv.lib; { +    description = "Microsoft Azure Command-Line Tools ACR Command Module"; +    homepage = https://github.com/Azure/azure-cli; +    license = licenses.mit; +    maintainers = with maintainers; [ stesie ]; +  }; +} | 
