summary refs log tree commit diff
path: root/pkgs/development/python-modules/msrestazure/default.nix
blob: 7e71f618d8a02c90297b1da3ce1fa783cc298ee7 (plain) (blame)
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
{ pkgs
, buildPythonPackage
, fetchPypi
, python
, adal
, msrest
}:

buildPythonPackage rec {
  version = "0.6.0";
  pname = "msrestazure";

  src = fetchPypi {
    inherit pname version;
    sha256 = "06s04f6nng4na2663kc12a3skiaqb631nscjfwpsrx4lzkf8bccr";
  };

  propagatedBuildInputs = [ adal msrest ];

  meta = with pkgs.lib; {
    description = "The runtime library 'msrestazure' for AutoRest generated Python clients.";
    homepage = "https://azure.microsoft.com/en-us/develop/python/";
    license = licenses.mit;
    maintainers = with maintainers; [ bendlas ];
  };
}