depot/third_party/nixpkgs/pkgs/development/python-modules/mwoauth/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

46 lines
898 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, oauthlib
, pyjwt
, pythonOlder
, requests
, requests-oauthlib
, six
}:
buildPythonPackage rec {
pname = "mwoauth";
version = "0.3.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-CNr07auqD5WoRfmOVwfecxaoODqWJfIK52iwNZkcNqw=";
};
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;
maintainers = with maintainers; [ ixxie ];
};
}