summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-02-25 15:13:13 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-03-28 08:17:04 +0200
commit2685758bd26f69bf3bdd64c5e6db89ef41acd3fc (patch)
tree4b4effdfac783c0820ca298bad517e0f99acc1a9
parent90d27e59ffad0964ae328c1f042615aa5f60d0d7 (diff)
downloadnixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.tar
nixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.tar.gz
nixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.tar.bz2
nixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.tar.lz
nixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.tar.xz
nixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.tar.zst
nixpkgs-2685758bd26f69bf3bdd64c5e6db89ef41acd3fc.zip
python3Packages.mwoauth: rename requests-oauthlib
-rw-r--r--pkgs/development/python-modules/mwoauth/default.nix23
1 files changed, 15 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/mwoauth/default.nix b/pkgs/development/python-modules/mwoauth/default.nix
index 8743329917e..0a12052abc7 100644
--- a/pkgs/development/python-modules/mwoauth/default.nix
+++ b/pkgs/development/python-modules/mwoauth/default.nix
@@ -1,40 +1,47 @@
 { lib
 , buildPythonPackage
-, six
+, fetchPypi
+, oauthlib
 , pyjwt
+, pythonOlder
 , requests
-, oauthlib
-, requests_oauthlib
-, fetchPypi
+, requests-oauthlib
+, six
 }:
 
 buildPythonPackage rec {
   pname = "mwoauth";
   version = "0.3.7";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "9e0d70a1fa6f452584de1cb853ae6c11f41233549f7839cfb879f99410f6ad46";
+    hash = "sha256-ng1wofpvRSWE3hy4U65sEfQSM1SfeDnPuHn5lBD2rUY=";
   };
 
   propagatedBuildInputs = [
     oauthlib
     pyjwt
     requests
-    requests_oauthlib
+    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"
+    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;
 
-  pythonImportsCheck = [ "mwoauth" ];
+  pythonImportsCheck = [
+    "mwoauth"
+  ];
 
   meta = with lib; {
     description = "Python library to perform OAuth handshakes with a MediaWiki installation";