blob: 969e2f347a9992b2acbd61e8c966cbc348e81581 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "morfessor";
version = "2.0.6";
format = "setuptools";
src = fetchPypi {
pname = "Morfessor";
inherit version;
sha256 = "bb3beac234341724c5f640f65803071f62373a50dba854d5a398567f9aefbab2";
};
checkPhase = "python -m unittest -v morfessor/test/*";
pythonImportsCheck = [ "morfessor" ];
meta = {
description = "Tool for unsupervised and semi-supervised morphological segmentation";
homepage = "https://github.com/aalto-speech/morfessor";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ misuzu ];
};
}
|