blob: 26832a2b7e033cf60948be86889d2e3ef8429ada (
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
|
{ stdenv, buildPythonPackage, fetchPypi
, adal
, keyring
, msrest
}:
buildPythonPackage rec {
pname = "msrestazure";
version = "0.4.34";
src = fetchPypi {
inherit pname version;
sha256 = "1r3dkqd0isfgc21994xb5qk80skspv2rr4jdj2mr9c6mxh1lmjag";
};
propagatedBuildInputs = [ adal keyring msrest ];
doCheck = false;
meta = with stdenv.lib; {
description = "AutoRest swagger generator Python client runtime. Azure-specific module.";
homepage = https://github.com/Azure/msrestazure-for-python;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|