Unverified Commit 846bf219 authored by Radik Islamov's avatar Radik Islamov Committed by GitHub
Browse files

python3Packages.bpemb: init at 0.3.5 (#295263)

* python311Packages.bpemb: init at 0.3.2

* python311Packages.bpemb: 0.3.2 -> 0.3.5
parent 63f1379a
Loading
Loading
Loading
Loading
+51 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub

, setuptools

, gensim
, numpy
, requests
, sentencepiece
, tqdm
}:

buildPythonPackage {
  pname = "bpemb";
  version = "0.3.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "bheinzerling";
    repo = "bpemb";
    rev = "ec85774945ca76dd93c1d9b4af2090e80c5779dc";
    hash = "sha256-nVaMXb5TBhO/vWE8AYAA3P9dSPI8O+rmzFvbEj8VEkE=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    gensim
    numpy
    requests
    sentencepiece
    tqdm
  ];

  # need network connection for tests
  doCheck = false;

  pythonImportsCheck = [
    "bpemb"
  ];

  meta = with lib; {
    description = "Byte-pair embeddings in 275 languages";
    homepage = "https://github.com/bheinzerling/bpemb";
    license = licenses.mit;
    maintainers = with maintainers; [ vizid ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1686,6 +1686,8 @@ self: super: with self; {
  boxx = callPackage ../development/python-modules/boxx { };
  bpemb = callPackage ../development/python-modules/bpemb { };
  bpycv = callPackage ../development/python-modules/bpycv {};
  bpython = callPackage ../development/python-modules/bpython { };