mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
45 lines
856 B
Nix
45 lines
856 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
oauthlib,
|
|
pyjwt,
|
|
pythonOlder,
|
|
requests,
|
|
requests-oauthlib,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mwoauth";
|
|
version = "0.4.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-IuNAPnSOcBRvjszBQw/lQsn5xP9nfv9CSlLmRPbY98U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
oauthlib
|
|
pyjwt
|
|
requests
|
|
requests-oauthlib
|
|
six
|
|
];
|
|
|
|
# PyPI source has no tests included
|
|
# https://github.com/mediawiki-utilities/python-mwoauth/issues/44
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mwoauth" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to perform OAuth handshakes with a MediaWiki installation";
|
|
homepage = "https://github.com/mediawiki-utilities/python-mwoauth";
|
|
license = licenses.mit;
|
|
};
|
|
}
|