Unverified Commit 88e12d64 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

python310Packages.jaraco-context: 4.2.0 -> 4.3.0 
parents a303f8c7 213e3d70
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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 ];
  };