python3Packages.bpemb: init at 0.3.5 (#295263)

* python311Packages.bpemb: init at 0.3.2

* python311Packages.bpemb: 0.3.2 -> 0.3.5
This commit is contained in:
Radik Islamov 2024-03-20 05:08:43 +05:00 committed by GitHub
parent 63f1379af5
commit 846bf21967
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,51 @@
{ 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 ];
};
}

View file

@ -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 { };