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: 7ac4b79e8226
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d8a7d04a29b9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 10, 2020

  1. python3Packages.somajo: 2.0.4 -> 2.0.5

    Changelog:
    
    - Add heuristics for ambiguous quotation marks (issue #11).
    - Avoid false positives for emoticons that contain a space (issue
      #12).
    - Correctly tokenize obfuscated email addresses that contain spaces.
    - Do not split tl;dr and its German variant zl;ng.
    
    https://github.com/tsproisl/SoMaJo/releases/tag/v2.0.5
    danieldk authored and Jon committed Apr 10, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veprbl Dmitry Kalinkin
    Copy the full SHA
    d8a7d04 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/somajo/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/somajo/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

buildPythonPackage rec {
pname = "SoMaJo";
version = "2.0.4";
version = "2.0.5";
disabled = !isPy3k;

src = fetchFromGitHub {
owner = "tsproisl";
repo = pname;
rev = "v${version}";
sha256 = "126jaslg8cfap2is3sy3v13xpl9drb80yc5lfsm1nw5s2xcxklqw";
sha256 = "01zvmqilnndh2b257z7bhcc7av5vhjm1g8gmdiiw15gcd2xfmqjs";
};

propagatedBuildInputs = [ regex ];