blob: bfdf994756e1b5f7aeb9cf6a63a2c0efed9abf94 (
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-common
, azure-mgmt-nspkg
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerinstance";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0by9kdag6gdhk7zqg7ab65l30l3bhlanlflknj228x9iah5ibj38";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-nspkg
msrestazure
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Container Instance Client Library for Python";
homepage = https://github.com/Azure/azure-sdk-for-python;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|