nixpkgs/pkgs/development/python-modules/jieba/default.nix

34 lines
854 B
Nix
Raw Normal View History

2018-04-04 21:53:31 +00:00
{ lib, buildPythonPackage, fetchFromGitHub, glibcLocales, python, isPy3k }:
buildPythonPackage rec {
pname = "jieba";
2020-02-09 11:25:37 +00:00
version = "0.42.1";
2018-04-04 21:53:31 +00:00
# no tests in PyPI tarball
src = fetchFromGitHub {
owner = "fxsjy";
repo = pname;
rev = "v${version}";
2020-02-09 11:25:37 +00:00
sha256 = "028vmd6sj6wn9l1ilw7qfmlpyiysnlzdgdlhwxs6j4fvq0gyrwxk";
2018-04-04 21:53:31 +00:00
};
checkInputs = [ glibcLocales ];
# UnicodeEncodeError
doCheck = isPy3k;
# Citing https://github.com/fxsjy/jieba/issues/384: "testcases is in a mess"
# So just picking random ones that currently work
checkPhase = ''
export LC_ALL=en_US.UTF-8
${python.interpreter} test/test.py
${python.interpreter} test/test_tokenize.py
'';
meta = with lib; {
description = "Chinese Words Segementation Utilities";
homepage = "https://github.com/fxsjy/jieba";
2018-04-04 21:53:31 +00:00
license = licenses.mit;
};
}