1{ lib
2, buildPythonPackage
3, fetchPypi
4
5# build-system
6, flit-core
7}:
8
9buildPythonPackage rec {
10 pname = "stdlib-list";
11 version = "0.10.0";
12 format = "pyproject";
13
14 src = fetchPypi {
15 pname = "stdlib_list";
16 inherit version;
17 hash = "sha256-ZRnFDWRVE+0odle/6FbVJ/J3MxVAaR3er3eyVFmWShQ=";
18 };
19
20 nativeBuildInputs = [
21 flit-core
22 ];
23
24 pythonImportsCheck = [
25 "stdlib_list"
26 ];
27
28 # tests see mismatches to our standard library
29 doCheck = false;
30
31 meta = with lib; {
32 changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
33 description = "A list of Python Standard Libraries";
34 homepage = "https://github.com/jackmaney/python-stdlib-list";
35 license = licenses.mit;
36 maintainers = with maintainers; [ hexa ];
37 };
38}