1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

Merge pull request #111128 from danieldk/somajo-2.1.2

python3Packages.somajo: 2.1.1 -> 2.1.2
This commit is contained in:
Daniël de Kok 2021-01-29 10:36:32 +01:00 committed by GitHub
commit 5fb5d024d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,14 +2,14 @@
buildPythonPackage rec {
pname = "SoMaJo";
version = "2.1.1";
version = "2.1.2";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "tsproisl";
repo = pname;
rev = "v${version}";
sha256 = "0yj3yb0qvfdv4wh7nzcsh9in8nzk7b59dvjj0x02rsmlv4kw9ah1";
sha256 = "1c4g8nhlcc348w0axdswv69q8k3qxwbnvim1yf7vagd0adv83gsj";
};
propagatedBuildInputs = [ regex ];
@ -17,7 +17,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Tokenizer and sentence splitter for German and English web texts";
homepage = "https://github.com/tsproisl/SoMaJo";
license = licenses.gpl3;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ danieldk ];
};
}