blob: 9937369739207bfc04dc513b23dd29529784c5e5 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{ stdenv, buildPythonPackage, fetchPypi
, azure-cli-command-modules-nspkg
, azure-cli-core
, azure-mgmt-containerregistry
, azure-mgmt-storage
, azure-mgmt-web
, pyopenssl
, six
, urllib3
, vsts-cd-manager
, xmltodict
}:
buildPythonPackage rec {
pname = "azure_cli_appservice";
version = "0.1.36";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "0ghi4yi2x22gk64sx7sivpvnvqcvjjchckydla1glicr1piwzn7a";
};
propagatedBuildInputs = [
azure-cli-command-modules-nspkg
azure-cli-core
azure-mgmt-containerregistry
azure-mgmt-storage
azure-mgmt-web
pyopenssl
six
urllib3
vsts-cd-manager
xmltodict
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Command-Line Tools AppService Command Module";
homepage = https://github.com/Azure/azure-cli;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|