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
47
48
49
50
51
52
53
54
55
56
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
cython,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cwcwidth";
version = "0.1.12";
pyproject = true;
src = fetchFromGitHub {
owner = "sebastinas";
repo = "cwcwidth";
tag = "v${version}";
hash = "sha256-mkyBtqAFqu7dxpb46qMOnXmXpUV3qtpknfIgVQQt5nY=";
};
build-system = [
cython
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
preCheck = ''
# prevent import shadow
rm -rf cwcwidth
# locale settings used by upstream, has the effect of skipping otherwise-failing tests on darwin
export LC_ALL='C.UTF-8'
export LANG='C.UTF-8'
'';
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# Despite setting the locales above, this test fails with:
# AssertionError: Tuples differ: (1, 1, 1, 1) != (1, 1, 1, 0)
"test_combining_spacing"
];
pythonImportsCheck = [ "cwcwidth" ];
meta = {
description = "Python bindings for wc(s)width";
homepage = "https://github.com/sebastinas/cwcwidth";
changelog = "https://github.com/sebastinas/cwcwidth/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|