blob: c5be69a4d4a2f63227313e653fcb6f9d4e0f7eac (
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
, azure-cli-command-modules-nspkg
, azure-cli-core
, azure-mgmt-search
}:
buildPythonPackage rec {
pname = "azure_cli_search";
version = "0.1.1";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "1m273pib0sjfzd3j7mz2bh8zkqmm9216xmh6h8rmd87r6cswk7mg";
};
propagatedBuildInputs = [
azure-cli-command-modules-nspkg
azure-cli-core
azure-mgmt-search
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Command-Line Tools Search Command Module";
homepage = https://github.com/Azure/azure-cli;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|