mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
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:
parent
63f1379af5
commit
846bf21967
51
pkgs/development/python-modules/bpemb/default.nix
Normal file
51
pkgs/development/python-modules/bpemb/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user