diff options
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-telemetry')
| -rw-r--r-- | pkgs/development/python-modules/azure-cli-telemetry/default.nix | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-cli-telemetry/default.nix b/pkgs/development/python-modules/azure-cli-telemetry/default.nix new file mode 100644 index 0000000..166cb71 --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-telemetry/default.nix @@ -0,0 +1,24 @@ +{ stdenv, buildPythonPackage, fetchPypi +, applicationinsights, azure-cli-nspkg, portalocker }: + +buildPythonPackage rec { +  pname = "azure_cli_telemetry"; +  version = "1.0.0"; +  format = "wheel"; + +  src = fetchPypi { +    inherit pname version format; +    sha256 = "0dc5yg28szg5pw4k0ybk95al2n50zfcgsmvq15s8hwvcvgv2xw3s"; +  }; + +  propagatedBuildInputs = [ applicationinsights azure-cli-nspkg portalocker ]; + +  doCheck = false; + +  meta = with stdenv.lib; { +    description = "Microsoft Azure CLI Telemetry Package"; +    homepage = https://github.com/Azure/azure-cli; +    license = licenses.mit; +    maintainers = with maintainers; [ stesie ]; +  }; +}  | 
