From 6ff46b7b5ac6948add64620ee1997372953eb2ef Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 27 Sep 2025 16:21:55 +0200 Subject: [PATCH] python313Packages.parquet: adjust check section --- pkgs/development/python-modules/parquet/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/parquet/default.nix b/pkgs/development/python-modules/parquet/default.nix index 5c01bd16752e..fe45aab74aa6 100644 --- a/pkgs/development/python-modules/parquet/default.nix +++ b/pkgs/development/python-modules/parquet/default.nix @@ -48,12 +48,17 @@ buildPythonPackage rec { "testFromExample" ]; - pythonImportsCheck = [ "thriftpy2" ]; + disabledTestPaths = [ + # Test is outdated + "test/test_read_support.py" + ]; + + pythonImportsCheck = [ "parquet" ]; meta = with lib; { description = "Python implementation of the parquet columnar file format"; homepage = "https://github.com/jcrobak/parquet-python"; - changelog = "https://github.com/jcrobak/parquet-python/releases/tag/v${version}"; + changelog = "https://github.com/jcrobak/parquet-python/releases/tag/${src.tag}"; license = licenses.bsd2; maintainers = with maintainers; [ fab ]; mainProgram = "parquet";