Loading pkgs/development/python-modules/colbert-ai/default.nix 0 → 100644 +69 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, # build-system setuptools, # dependencies bitarray, datasets, flask, python-dotenv, ninja, scipy, tqdm, transformers, ujson, gitpython, torch, faiss, }: buildPythonPackage rec { pname = "colbert-ai"; version = "0.2.21"; pyproject = true; src = fetchPypi { inherit version; pname = "colbert_ai"; hash = "sha256-qNb9tOInLysI7Tf45QlgchYNhBXR5AWFdRiYt35iW6s="; }; pythonRemoveDeps = [ "git-python" ]; build-system = [ setuptools ]; dependencies = [ bitarray datasets faiss flask gitpython python-dotenv ninja scipy torch tqdm transformers ujson ]; pythonImportsCheck = [ "colbert" ]; # There is no tests doCheck = false; meta = { description = "Fast and accurate retrieval model, enabling scalable BERT-based search over large text collections in tens of milliseconds"; homepage = "https://github.com/stanford-futuredata/ColBERT"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ bachp ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2436,6 +2436,8 @@ self: super: with self; { colander = callPackage ../development/python-modules/colander { }; colbert-ai = callPackage ../development/python-modules/colbert-ai { }; collections-extended = callPackage ../development/python-modules/collections-extended { }; collidoscope = callPackage ../development/python-modules/collidoscope { }; Loading Loading
pkgs/development/python-modules/colbert-ai/default.nix 0 → 100644 +69 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, # build-system setuptools, # dependencies bitarray, datasets, flask, python-dotenv, ninja, scipy, tqdm, transformers, ujson, gitpython, torch, faiss, }: buildPythonPackage rec { pname = "colbert-ai"; version = "0.2.21"; pyproject = true; src = fetchPypi { inherit version; pname = "colbert_ai"; hash = "sha256-qNb9tOInLysI7Tf45QlgchYNhBXR5AWFdRiYt35iW6s="; }; pythonRemoveDeps = [ "git-python" ]; build-system = [ setuptools ]; dependencies = [ bitarray datasets faiss flask gitpython python-dotenv ninja scipy torch tqdm transformers ujson ]; pythonImportsCheck = [ "colbert" ]; # There is no tests doCheck = false; meta = { description = "Fast and accurate retrieval model, enabling scalable BERT-based search over large text collections in tens of milliseconds"; homepage = "https://github.com/stanford-futuredata/ColBERT"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ bachp ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2436,6 +2436,8 @@ self: super: with self; { colander = callPackage ../development/python-modules/colander { }; colbert-ai = callPackage ../development/python-modules/colbert-ai { }; collections-extended = callPackage ../development/python-modules/collections-extended { }; collidoscope = callPackage ../development/python-modules/collidoscope { }; Loading