updated python
treefmt / nix fmt (pull_request) Failing after 6s
pytest / pytest (pull_request) Successful in 30s
build_systems / build-brain (pull_request) Successful in 55s
build_systems / build-bob (pull_request) Successful in 59s
build_systems / build-leviathan (pull_request) Successful in 1m33s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m38s
build_systems / build-jeeves (pull_request) Successful in 2m35s

This commit is contained in:
2026-06-12 03:12:26 -04:00
parent 41592491dc
commit b68db3bcaf
+28 -1
View File
@@ -17,15 +17,41 @@
python-env = final: _prev: { python-env = final: _prev: {
my_python = final.python314.withPackages ( my_python = final.python314.withPackages (
ps: with ps; [ ps:
let
bm25s = ps.buildPythonPackage rec {
pname = "bm25s";
version = "0.3.9";
pyproject = true;
src = final.fetchPypi {
inherit pname version;
hash = "sha256-iVxnnZUrfeg1XttfPhpiCh4vKU0dQrkZvwghzOLi9Zc=";
};
build-system = [ ps.setuptools ];
dependencies = with ps; [
numpy
scipy
];
pythonImportsCheck = [ "bm25s" ];
};
in
with ps;
[
alembic alembic
apprise apprise
apscheduler apscheduler
beautifulsoup4
ebooklib
fastapi fastapi
fastapi-cli fastapi-cli
httpx httpx
mypy mypy
numpy
orjson orjson
pgvector
polars polars
psycopg psycopg
pydantic pydantic
@@ -39,6 +65,7 @@
scalene scalene
sqlalchemy sqlalchemy
sqlalchemy sqlalchemy
bm25s
tenacity tenacity
textual textual
tiktoken tiktoken