Merge pull request #174416 from r-ryantm/auto-update/python3.10-mwoauth

python310Packages.mwoauth: 0.3.7 -> 0.3.8

authored by Fabian Affolter and committed by GitHub ea3f23b4 eeb2d04b

+2 -8
+2 -8
pkgs/development/python-modules/mwoauth/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "mwoauth"; 14 - version = "0.3.7"; 14 + version = "0.3.8"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-ng1wofpvRSWE3hy4U65sEfQSM1SfeDnPuHn5lBD2rUY="; 21 + hash = "sha256-CNr07auqD5WoRfmOVwfecxaoODqWJfIK52iwNZkcNqw="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ ··· 28 28 requests-oauthlib 29 29 six 30 30 ]; 31 - 32 - postPatch = '' 33 - # https://github.com/mediawiki-utilities/python-mwoauth/pull/43 34 - substituteInPlace setup.py \ 35 - --replace "PyJWT>=1.0.1,<2.0.0" "PyJWT>=1.0.1" 36 - ''; 37 31 38 32 # PyPI source has no tests included 39 33 # https://github.com/mediawiki-utilities/python-mwoauth/issues/44