aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-cli-telemetry/default.nix
blob: 166cb717ce325bffdbbd89b7fd06baba6a2d6fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}