blob: 68b7e7ab9f2e126b92e8572690052f7c323f46c7 (
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
25
26
27
28
29
30
31
|
{ stdenv, buildPythonPackage, fetchPypi
, applicationinsights
, azure-cli-command-modules-nspkg
, azure-cli-core
}:
buildPythonPackage rec {
pname = "azure_cli_feedback";
version = "2.1.4";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "1pyw4nbaywhi96a9cp63xvj2bix9xlhhaf7rfjy9mcm1xwz4zbn8";
};
propagatedBuildInputs = [
applicationinsights
azure-cli-command-modules-nspkg
azure-cli-core
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Command-Line Tools Feedback Command Module";
homepage = https://github.com/Azure/azure-cli;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|