tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.parquet: adjust check section
Fabian Affolter
6 months ago
6ff46b7b
84a03aa1
+7
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
parquet
default.nix
+7
-2
pkgs/development/python-modules/parquet/default.nix
reviewed
···
48
48
"testFromExample"
49
49
];
50
50
51
51
-
pythonImportsCheck = [ "thriftpy2" ];
51
51
+
disabledTestPaths = [
52
52
+
# Test is outdated
53
53
+
"test/test_read_support.py"
54
54
+
];
55
55
+
56
56
+
pythonImportsCheck = [ "parquet" ];
52
57
53
58
meta = with lib; {
54
59
description = "Python implementation of the parquet columnar file format";
55
60
homepage = "https://github.com/jcrobak/parquet-python";
56
56
-
changelog = "https://github.com/jcrobak/parquet-python/releases/tag/v${version}";
61
61
+
changelog = "https://github.com/jcrobak/parquet-python/releases/tag/${src.tag}";
57
62
license = licenses.bsd2;
58
63
maintainers = with maintainers; [ fab ];
59
64
mainProgram = "parquet";