14 buildPythonPackage rec {
16 pname = "msrestazure";
18 # Pypi tarball doesnt include tests
19 # see https://github.com/Azure/msrestazure-for-python/pull/133
20 src = fetchFromGitHub {
22 repo = "msrestazure-for-python";
24 sha256 = "0ik81f0n6r27f02gblgm0vl5zl3wc6ijsscihgvc1fgm9f5mk5b5";
27 propagatedBuildInputs = [ adal msrest ];
29 nativeCheckInputs = [ httpretty mock pytest ]
30 ++ lib.optionals isPy3k [ pytest-asyncio ];
36 meta = with pkgs.lib; {
37 description = "The runtime library 'msrestazure' for AutoRest generated Python clients.";
38 homepage = "https://azure.microsoft.com/en-us/develop/python/";
39 license = licenses.mit;
40 maintainers = with maintainers; [ bendlas jonringer ];