tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.duckdb-engine: 0.13.2 -> 0.13.4
Phillip Cloud
1 year ago
9c9b745e
5d3e027d
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
duckdb-engine
default.nix
+4
-2
pkgs/development/python-modules/duckdb-engine/default.nix
···
9
9
duckdb,
10
10
hypothesis,
11
11
pandas,
12
12
+
pyarrow,
12
13
poetry-core,
13
14
pytest-remotedata,
14
15
snapshottest,
···
18
19
19
20
buildPythonPackage rec {
20
21
pname = "duckdb-engine";
21
21
-
version = "0.13.2";
22
22
+
version = "0.13.4";
22
23
pyproject = true;
23
24
24
25
disabled = pythonOlder "3.8";
···
27
28
repo = "duckdb_engine";
28
29
owner = "Mause";
29
30
rev = "refs/tags/v${version}";
30
30
-
hash = "sha256-zao8kzzQbnjwJqjHyqDkgmXa3E9nlBH2W0wh7Kjk/qw=";
31
31
+
hash = "sha256-B9vh8OILmRZKKznBbEkkm3zlAwGwMGdiuc378msiywE=";
31
32
};
32
33
33
34
nativeBuildInputs = [ poetry-core ];
···
48
49
pandas
49
50
pytest-remotedata
50
51
typing-extensions
52
52
+
pyarrow
51
53
] ++ lib.optionals (pythonOlder "3.12") [
52
54
# requires wasmer which is broken for python 3.12
53
55
# https://github.com/wasmerio/wasmer-python/issues/778