Merge pull request #212379 from fabaff/jaraco-context-bump

python310Packages.jaraco-context: 4.2.0 -> 4.3.0
This commit is contained in:
Mario Rodas 2023-01-31 06:02:16 -05:00 committed by GitHub
commit 88e12d64b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,16 +7,16 @@
buildPythonPackage rec {
pname = "jaraco-context";
version = "4.2.0";
version = "4.3.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.context";
rev = "refs/tags/v${version}";
sha256 = "sha256-J7vL+pvwXcKEkqZn44/U01HmP1CI5kIGsJ1aJevp0I4=";
hash = "sha256-YdbkpKv7k62uyhmjKoxeA9uf5BWnRD/rK+z46FJN4xk=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -32,11 +32,14 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "jaraco.context" ];
pythonImportsCheck = [
"jaraco.context"
];
meta = with lib; {
description = "Python module for context management";
homepage = "https://github.com/jaraco/jaraco.context";
changelog = "https://github.com/jaraco/jaraco.context/blob/v${version}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};