1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 flit-core,
6 pythonOlder,
7}:
8
9buildPythonPackage rec {
10 pname = "stdlibs";
11 version = "2025.5.10";
12 pyproject = true;
13
14 disabled = pythonOlder "3.8";
15
16 src = fetchFromGitHub {
17 owner = "omnilib";
18 repo = "stdlibs";
19 tag = "v${version}";
20 hash = "sha256-pvQZ+sRmad5m274wbIulHh5Tifim35uH7mz69jopVRw=";
21 };
22
23 build-system = [ flit-core ];
24
25 # Module has no tests
26 doCheck = false;
27
28 pythonImportsCheck = [ "stdlibs" ];
29
30 meta = with lib; {
31 description = "Overview of the Python stdlib";
32 homepage = "https://github.com/omnilib/stdlibs";
33 changelog = "https://github.com/omnilib/stdlibs/blob/${version}/CHANGELOG.md";
34 license = licenses.mit;
35 maintainers = with maintainers; [ fab ];
36 };
37}