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