summary refs log tree commit diff
path: root/pkgs/development/python-modules/msrest/default.nix
blob: d57eb1cd1a0f835ad6e0b497aff5ed4d0539a642 (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
27
28
{ pkgs
, buildPythonPackage
, fetchPypi
, python
, certifi
, requests_oauthlib
, typing
, isodate
}:

buildPythonPackage rec {
  version = "0.6.2";
  pname = "msrest";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0icklfjaagk0j9iwq897avmqhwwmgs7c5yy5jw3ppdqz6h0sm38v";
  };

  propagatedBuildInputs = [ certifi requests_oauthlib typing isodate ];

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