python3Packages.stdlibs: 2025.5.10 -> 2025.10.28 (#456812)

This commit is contained in:
Nick Cao
2025-10-30 21:56:32 +00:00
committed by GitHub
@@ -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 ];
};