1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
numpy,
# tests
asyncpg,
django,
peewee,
pg8000,
postgresql,
postgresqlTestHook,
psycopg-pool,
psycopg,
psycopg2,
pytest-asyncio,
pytestCheckHook,
scipy,
sqlalchemy,
sqlmodel,
}:
buildPythonPackage rec {
pname = "pgvector";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "pgvector";
repo = "pgvector-python";
tag = "v${version}";
hash = "sha256-jzUZK3zQxqajVqGbaQzLPzvK/k3Wck9jX95kkBH2IlY=";
};
build-system = [ setuptools ];
dependencies = [ numpy ];
nativeCheckInputs = [
asyncpg
django
peewee
pg8000
psycopg
psycopg.pool
psycopg2
psycopg-pool
(postgresql.withPackages (p: with p; [ pgvector ]))
postgresqlTestHook
pytest-asyncio
pytestCheckHook
scipy
sqlalchemy
sqlmodel
];
env = {
PGDATABASE = "pgvector_python_test";
postgresqlEnableTCP = 1;
postgresqlTestUserOptions = "LOGIN SUPERUSER";
USER = "test_user";
};
disabledTestPaths = [
# DB error
"tests/test_pg8000.py"
"tests/test_sqlalchemy.py"
];
pythonImportsCheck = [ "pgvector" ];
__darwinAllowLocalNetworking = true;
meta = {
description = "Pgvector support for Python";
homepage = "https://github.com/pgvector/pgvector-python";
changelog = "https://github.com/pgvector/pgvector-python/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}
|