lol

python310Packages.pytest-mock: 3.10.0 -> 3.11.1

Changelog: https://github.com/pytest-dev/pytest-mock/blob/v3.11.1/CHANGELOG.rst

+2 -10
+2 -10
pkgs/development/python-modules/pytest-mock/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pytest-mock"; 14 - version = "3.10.0"; 14 + version = "3.11.1"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 ··· 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-+72whe98JSoyb9jNysCqOxMz2IEfExvcxwEALhvn7U8="; 22 + hash = "sha256-f2sSVgKsbXQ+Ujrgv6ceGml6L1U0BkUoxv+EwvfC/H8="; 23 23 }; 24 - 25 - patches = [ 26 - (fetchpatch { 27 - # Remove unnecessary py.code import 28 - url = "https://github.com/pytest-dev/pytest-mock/pull/328/commits/e2016928db1147a2a46de6ee9fa878ca0e9d8fc8.patch"; 29 - hash = "sha256-5Gpzi7h7Io1CMykmBCZR/upM8E9isc3jEItYgwjEOWA="; 30 - }) 31 - ]; 32 24 33 25 nativeBuildInputs = [ setuptools-scm ]; 34 26