diff --git a/pkgs/development/python-modules/stdlibs/default.nix b/pkgs/development/python-modules/stdlibs/default.nix index 7a6b4a145468..6cd8f8bdfd60 100644 --- a/pkgs/development/python-modules/stdlibs/default.nix +++ b/pkgs/development/python-modules/stdlibs/default.nix @@ -3,21 +3,18 @@ buildPythonPackage, fetchFromGitHub, flit-core, - pythonOlder, }: buildPythonPackage rec { pname = "stdlibs"; - version = "2025.5.10"; + version = "2025.10.28"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "omnilib"; repo = "stdlibs"; tag = "v${version}"; - hash = "sha256-pvQZ+sRmad5m274wbIulHh5Tifim35uH7mz69jopVRw="; + hash = "sha256-1xdwYwkQqkPsa5yjrTUM0HxRVLJ+ZQvYwFpjIlW7jaY="; }; build-system = [ flit-core ]; @@ -30,7 +27,7 @@ buildPythonPackage rec { meta = with lib; { description = "Overview of the Python stdlib"; homepage = "https://github.com/omnilib/stdlibs"; - changelog = "https://github.com/omnilib/stdlibs/blob/${version}/CHANGELOG.md"; + changelog = "https://github.com/omnilib/stdlibs/blob/${src.tag}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };