blob: 18612db165402b9fffa0d4d614a5d80890a3ad94 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
}:
buildPythonPackage rec {
pname = "stdlib-list";
version = "0.12.0";
pyproject = true;
src = fetchPypi {
pname = "stdlib_list";
inherit version;
hash = "sha256-UXgk8n7onlkdiufB3Z/zT2curlDuiG6jG7iBbXdTVnU=";
};
build-system = [ flit-core ];
pythonImportsCheck = [ "stdlib_list" ];
# tests see mismatches to our standard library
doCheck = false;
meta = {
description = "List of Python Standard Libraries";
homepage = "https://github.com/jackmaney/python-stdlib-list";
changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|