python3Packages.jaraco-context: 4.3.0 -> 5.3.0

https://github.com/jaraco/jaraco.context/blob/v5.3.0/CHANGES.rst
This commit is contained in:
Martin Weinelt
2024-06-24 12:15:37 +02:00
parent 6344fa5869
commit 112620db5d
@@ -4,11 +4,12 @@
fetchFromGitHub,
pythonOlder,
setuptools-scm,
backports-tarfile,
}:
buildPythonPackage rec {
pname = "jaraco-context";
version = "4.3.0";
version = "5.3.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -17,13 +18,15 @@ buildPythonPackage rec {
owner = "jaraco";
repo = "jaraco.context";
rev = "refs/tags/v${version}";
hash = "sha256-YdbkpKv7k62uyhmjKoxeA9uf5BWnRD/rK+z46FJN4xk=";
hash = "sha256-Caj51qBLHbuiey023iLc+N2M8QiJKH8G/Pzu1v3AToU=";
};
pythonNamespaces = [ "jaraco" ];
nativeBuildInputs = [ setuptools-scm ];
dependencies = lib.optionals (pythonOlder "3.12") [ backports-tarfile ];
# Module has no tests
doCheck = false;