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

24 lines
619 B
Nix

{ pkgs, stdenv, fetchFromGitHub, buildPythonPackage, isPy3k, regex }:
buildPythonPackage rec {
pname = "SoMaJo";
version = "2.1.0";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "tsproisl";
repo = pname;
rev = "v${version}";
sha256 = "17ybm5rgwc6jy3i1c8nm05j7fd418n6hp44zv0q77kzhd66am6pp";
};
propagatedBuildInputs = [ regex ];
meta = with stdenv.lib; {
description = "Tokenizer and sentence splitter for German and English web texts";
homepage = "https://github.com/tsproisl/SoMaJo";
license = licenses.gpl3;
maintainers = with maintainers; [ danieldk ];
};
}