nixpkgs/pkgs/development/python-modules/mwoauth/default.nix

32 lines
767 B
Nix
Raw Normal View History

2018-01-20 13:33:21 +00:00
{ lib
, buildPythonPackage
, six
, pyjwt
, requests
, oauthlib
, requests_oauthlib
, fetchPypi
}:
buildPythonPackage rec {
pname = "mwoauth";
2019-11-11 11:13:37 +00:00
version = "0.3.7";
2018-01-20 13:33:21 +00:00
src = fetchPypi {
inherit pname version;
2019-11-11 11:13:37 +00:00
sha256 = "9e0d70a1fa6f452584de1cb853ae6c11f41233549f7839cfb879f99410f6ad46";
2018-01-20 13:33:21 +00:00
};
# 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";
2018-01-20 13:33:21 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ixxie ];
};
}