blob: ce311ef949cd020754df96e8265bb247ad8148f5 (
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
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
setuptools,
wcwidth,
pytestCheckHook,
}:
buildPythonPackage rec {
version = "0.9.0";
pname = "tabulate";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-AJWxK/WWbeUpwP6x+ghnFnGzNo7sd9fverEUviwGizw=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
optional-dependencies = {
widechars = [ wcwidth ];
};
nativeCheckInputs = [
pytestCheckHook
]
++ lib.concatAttrValues optional-dependencies;
# Tests against stdlib behavior which changed in https://github.com/python/cpython/pull/139070
disabledTests = [
"test_wrap_multiword_non_wide"
];
meta = {
description = "Pretty-print tabular data";
mainProgram = "tabulate";
homepage = "https://github.com/astanin/python-tabulate";
license = lib.licenses.mit;
};
}
|