python313Packages.pandera: 0.23.1 -> 0.24.0

https://github.com/unionai-oss/pandera/releases/tag/v0.24.0
This commit is contained in:
Martin Weinelt
2025-05-23 08:37:32 -07:00
committed by Robert Schütz
parent fdd0d57249
commit 479d262df9
@@ -38,14 +38,14 @@
buildPythonPackage rec {
pname = "pandera";
version = "0.23.1";
version = "0.24.0";
pyproject = true;
src = fetchFromGitHub {
owner = "unionai-oss";
repo = "pandera";
tag = "v${version}";
hash = "sha256-aKyuOA/N5QPv6NoN6OFNSFMuN4+8XMpglVtoDFDJZBs=";
hash = "sha256-S5y717M3rGGO39TOh1X5yePvdcF6ct1Jk51/bbM6X6M=";
};
build-system = [
@@ -116,9 +116,9 @@ buildPythonPackage rec {
disabledTestPaths = [
"tests/fastapi/test_app.py" # tries to access network
"tests/core/test_docs_setting_column_widths.py" # tests doc generation, requires sphinx
"tests/pandas/test_docs_setting_column_widths.py" # tests doc generation, requires sphinx
"tests/modin" # requires modin, not in nixpkgs
"tests/mypy/test_static_type_checking.py" # some typing failures
"tests/mypy/test_pandas_static_type_checking.py" # some typing failures
"tests/pyspark" # requires spark
];