From 393557ebef4a8494a794102f27777917d390cfad Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 25 May 2022 05:29:16 +0000 Subject: [PATCH 1/2] python310Packages.mwoauth: 0.3.7 -> 0.3.8 --- pkgs/development/python-modules/mwoauth/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mwoauth/default.nix b/pkgs/development/python-modules/mwoauth/default.nix index 0a12052abc7e..3d22e99275a3 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 = [ From 285520c567e1b642d7024bb3e323a52eafb8088f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 25 May 2022 08:44:34 +0200 Subject: [PATCH 2/2] python310Packages.mwoauth: remove stale substituteInPlace --- pkgs/development/python-modules/mwoauth/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/python-modules/mwoauth/default.nix b/pkgs/development/python-modules/mwoauth/default.nix index 3d22e99275a3..1fcd7123ea75 100644 --- a/pkgs/development/python-modules/mwoauth/default.nix +++ b/pkgs/development/python-modules/mwoauth/default.nix @@ -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;