blob: ead093cd5622129c9249b66b13e7c461b20f5653 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "stop-words";
version = "2018.7.23";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-bfOtX13ml9qkN+REXIbHNgTmvBON0NwPrFVmSqTmsD4=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "stop_words" ];
meta = {
description = "Get list of common stop words in various languages in Python";
homepage = "https://github.com/Alir3z4/python-stop-words";
license = [ lib.licenses.bsd3 ];
maintainers = with lib.maintainers; [ lavafroth ];
};
}
|