depot/third_party/nixpkgs/pkgs/development/python-modules/sentence-splitter/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
816 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
pytestCheckHook,
regex,
}:
buildPythonPackage rec {
pname = "sentence-splitter";
version = "1.4";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "mediacloud";
repo = "sentence-splitter";
rev = version;
hash = "sha256-FxRi8fhKB9++lCTFpCAug0fxjkSVTKChLY84vkshR34=";
};
propagatedBuildInputs = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "sentence_splitter" ];
meta = with lib; {
description = "Text to sentence splitter using heuristic algorithm by Philipp Koehn and Josh Schroeder";
homepage = "https://github.com/mediacloud/sentence-splitter";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ ];
};
}