Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6e8964256ceb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5fb5d024d775
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 29, 2021

  1. Copy the full SHA
    e61406e View commit details
  2. Copy the full SHA
    49232e8 View commit details
  3. Merge pull request #111128 from danieldk/somajo-2.1.2

    python3Packages.somajo: 2.1.1 -> 2.1.2
    danieldk authored Jan 29, 2021
    Copy the full SHA
    5fb5d02 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/somajo/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/somajo/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,22 @@

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 ];

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 ];
};
}