Commit c05a9030 authored by Steven Allen's avatar Steven Allen
Browse files

python313Packages.sacremoses: 0.0.35 -> 0.1.1

In addition to bumping the version, this commit:

1. Removes `six` and adds `regex` as a dependency.

2. Changes upstream from `alvations` to `hplt-project` based on the homepage
link in https://pypi.org/project/sacremoses/.
parent 21c8264c
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -3,29 +3,29 @@
  lib,
  fetchFromGitHub,
  click,
  six,
  tqdm,
  joblib,
  tqdm,
  regex,
  pytest,
}:

buildPythonPackage rec {
  pname = "sacremoses";
  version = "0.0.35";
  version = "0.1.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "alvations";
    owner = "hplt-project";
    repo = "sacremoses";
    rev = version;
    sha256 = "1gzr56w8yx82mn08wax5m0xyg15ym4ri5l80gmagp8r53443j770";
    sha256 = "sha256-ked6/8oaGJwVW1jvpjrWtJYfr0GKUHdJyaEuzid/S3M=";
  };

  propagatedBuildInputs = [
    click
    six
    tqdm
    joblib
    tqdm
    regex
  ];

  nativeCheckInputs = [ pytest ];