1{ pkgs
2, buildPythonPackage
3, fetchPypi
4, python
5, adal
6, msrest
7}:
8
9buildPythonPackage rec {
10 version = "0.6.0";
11 pname = "msrestazure";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "06s04f6nng4na2663kc12a3skiaqb631nscjfwpsrx4lzkf8bccr";
16 };
17
18 propagatedBuildInputs = [ adal msrest ];
19
20 meta = with pkgs.lib; {
21 description = "The runtime library 'msrestazure' for AutoRest generated Python clients.";
22 homepage = "https://azure.microsoft.com/en-us/develop/python/";
23 license = licenses.mit;
24 maintainers = with maintainers; [ bendlas ];
25 };
26}