summary refs log tree commit diff
path: root/pkgs/development/python-modules/mwoauth/default.nix
blob: e9d43e9e2b6ab8f3904e93da3a130e3495f90f30 (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
29
30
31
{ lib
, buildPythonPackage
, six
, pyjwt
, requests
, oauthlib
, requests_oauthlib
, fetchPypi
}:

buildPythonPackage rec {
  pname = "mwoauth";
  version = "0.3.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1krqz755415z37z1znrc77vi4xyp5ys6fnq4zwcwixjjbzddpavj";
  };

  # package has no tests
  doCheck = false;
  
  propagatedBuildInputs = [ six pyjwt requests oauthlib requests_oauthlib ];

  meta = with lib; {
    description = "A library designed to provide a simple means to performing an OAuth handshake with a MediaWiki installation with the OAuth Extension installed.";
    homepage =  https://github.com/mediawiki-utilities/python-mwoauth;
    license = licenses.mit;
    maintainers = with maintainers; [ ixxie ];
  };
}