1{ lib
2, buildPythonPackage
3, isPy27
4, fetchPypi
5}:
6
7buildPythonPackage rec {
8 pname = "stdlib-list";
9 version = "0.8.0";
10 format = "setuptools";
11 disabled = isPy27;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "17vdn4q0sdlndc2fr9svapxx6366hnrhkn0fswp1xmr0jxqh7rd1";
16 };
17
18 pythonImportsCheck = [
19 "stdlib_list"
20 ];
21
22 # tests see mismatches to our standard library
23 doCheck = false;
24
25 meta = with lib; {
26 description = "A list of Python Standard Libraries";
27 homepage = "https://github.com/jackmaney/python-stdlib-list";
28 license = licenses.mit;
29 maintainers = with maintainers; [ hexa ];
30 };
31}