python3Packages.mwoauth: fix build
This commit is contained in:
parent
d10aedaea5
commit
b4170925ef
@ -17,13 +17,27 @@ buildPythonPackage rec {
|
|||||||
sha256 = "9e0d70a1fa6f452584de1cb853ae6c11f41233549f7839cfb879f99410f6ad46";
|
sha256 = "9e0d70a1fa6f452584de1cb853ae6c11f41233549f7839cfb879f99410f6ad46";
|
||||||
};
|
};
|
||||||
|
|
||||||
# package has no tests
|
propagatedBuildInputs = [
|
||||||
|
oauthlib
|
||||||
|
pyjwt
|
||||||
|
requests
|
||||||
|
requests_oauthlib
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# https://github.com/mediawiki-utilities/python-mwoauth/pull/43
|
||||||
|
substituteInPlace setup.py --replace "PyJWT>=1.0.1,<2.0.0" "PyJWT>=1.0.1"
|
||||||
|
'';
|
||||||
|
|
||||||
|
# PyPI source has no tests included
|
||||||
|
# https://github.com/mediawiki-utilities/python-mwoauth/issues/44
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = [ six pyjwt requests oauthlib requests_oauthlib ];
|
pythonImportsCheck = [ "mwoauth" ];
|
||||||
|
|
||||||
meta = with lib; {
|
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.";
|
description = "Python library to perform OAuth handshakes with a MediaWiki installation";
|
||||||
homepage = "https://github.com/mediawiki-utilities/python-mwoauth";
|
homepage = "https://github.com/mediawiki-utilities/python-mwoauth";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ixxie ];
|
maintainers = with maintainers; [ ixxie ];
|
||||||
|
Loading…
Reference in New Issue
Block a user