summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-05-25 18:47:37 +0200
committerGitHub <noreply@github.com>2022-05-25 18:47:37 +0200
commitea3f23b46756d6a157932f0dfa225fe4551a702e (patch)
tree42326fd1ad30008d76b38c79985e1e2f7e571868
parenteeb2d04b9d1aea7c0a97ed85c4a89a778e84093f (diff)
parent285520c567e1b642d7024bb3e323a52eafb8088f (diff)
Merge pull request #174416 from r-ryantm/auto-update/python3.10-mwoauth
python310Packages.mwoauth: 0.3.7 -> 0.3.8
-rw-r--r--pkgs/development/python-modules/mwoauth/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/mwoauth/default.nix b/pkgs/development/python-modules/mwoauth/default.nix
index 0a12052abc7e..1fcd7123ea75 100644
--- a/pkgs/development/python-modules/mwoauth/default.nix
+++ b/pkgs/development/python-modules/mwoauth/default.nix
@@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "mwoauth";
- version = "0.3.7";
+ version = "0.3.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-ng1wofpvRSWE3hy4U65sEfQSM1SfeDnPuHn5lBD2rUY=";
+ hash = "sha256-CNr07auqD5WoRfmOVwfecxaoODqWJfIK52iwNZkcNqw=";
};
propagatedBuildInputs = [
@@ -29,12 +29,6 @@ buildPythonPackage rec {
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;