python312Packages.gevent 23.9.1 -> 24.2.1 https://repology.org/project/python:gevent/versions attrpath: python312Packages.gevent Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lq5z1q0n52l2ssxr8sqxn6c1vi5rlgr0-packages.json.drv building '/nix/store/lq5z1q0n52l2ssxr8sqxn6c1vi5rlgr0-packages.json.drv'... Going to be running update for following packages: - python3.12-gevent-23.9.1 Press Enter key to continue... Running update for: - python3.12-gevent-23.9.1: UPDATING ... - python3.12-gevent-23.9.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/gevent/default.nix b/pkgs/development/python-modules/gevent/default.nix index 0863a52d003d..d6264794a505 100644 --- a/pkgs/development/python-modules/gevent/default.nix +++ b/pkgs/development/python-modules/gevent/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "gevent"; - version = "23.9.1"; + version = "24.2.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-csACI1OQ1G+Uk4qWkg2IVtT/2d32KjA6DXwRiJQJfjQ="; + hash = "sha256-Qy/Hb2gKz3zxiMLuD106tztjwfAxFMfNijTOu+WqIFY="; }; nativeBuildInputs = [ No auto update branch exists Old version 23.9.1" not present in staging derivation file with contents: { lib , fetchPypi , buildPythonPackage , isPyPy , python , libev , cffi , cython_3 , greenlet , importlib-metadata , setuptools , wheel , zope-event , zope-interface , pythonOlder # for passthru.tests , dulwich , gunicorn , opentracing , pika }: buildPythonPackage rec { pname = "gevent"; version = "24.2.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-Qy/Hb2gKz3zxiMLuD106tztjwfAxFMfNijTOu+WqIFY="; }; nativeBuildInputs = [ cython_3 setuptools wheel ] ++ lib.optionals (!isPyPy) [ cffi ]; buildInputs = [ libev ]; propagatedBuildInputs = [ importlib-metadata zope-event zope-interface ] ++ lib.optionals (!isPyPy) [ greenlet ]; # Bunch of failures. doCheck = false; pythonImportsCheck = [ "gevent" "gevent.events" ]; passthru.tests = { inherit dulwich gunicorn opentracing pika; } // lib.filterAttrs (k: v: lib.hasInfix "gevent" k) python.pkgs; meta = with lib; { description = "Coroutine-based networking library"; homepage = "http://www.gevent.org/"; license = licenses.mit; maintainers = with maintainers; [ bjornfor ]; platforms = platforms.unix; }; }