python3Packages.stop-words: init at 2018.7.23 (#366134)

This commit is contained in:
Arne Keller
2025-01-08 10:55:45 +01:00
committed by GitHub
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,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 ];
};
}
+2
View File
@@ -15539,6 +15539,8 @@ self: super: with self; {
stopit = callPackage ../development/python-modules/stopit { };
stop-words = callPackage ../development/python-modules/stop-words { };
stransi = callPackage ../development/python-modules/stransi { };
strategies = callPackage ../development/python-modules/strategies { };