lol

python3Packages.jaraco-context: 4.3.0 -> 5.3.0

https://github.com/jaraco/jaraco.context/blob/v5.3.0/CHANGES.rst

+5 -2
+5 -2
pkgs/development/python-modules/jaraco-context/default.nix
··· 4 4 fetchFromGitHub, 5 5 pythonOlder, 6 6 setuptools-scm, 7 + backports-tarfile, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "jaraco-context"; 11 - version = "4.3.0"; 12 + version = "5.3.0"; 12 13 format = "pyproject"; 13 14 14 15 disabled = pythonOlder "3.7"; ··· 17 18 owner = "jaraco"; 18 19 repo = "jaraco.context"; 19 20 rev = "refs/tags/v${version}"; 20 - hash = "sha256-YdbkpKv7k62uyhmjKoxeA9uf5BWnRD/rK+z46FJN4xk="; 21 + hash = "sha256-Caj51qBLHbuiey023iLc+N2M8QiJKH8G/Pzu1v3AToU="; 21 22 }; 22 23 23 24 pythonNamespaces = [ "jaraco" ]; 24 25 25 26 nativeBuildInputs = [ setuptools-scm ]; 27 + 28 + dependencies = lib.optionals (pythonOlder "3.12") [ backports-tarfile ]; 26 29 27 30 # Module has no tests 28 31 doCheck = false;