python3Packages.deepdiff: 8.5.0 -> 8.6.1

Changed files
+6 -5
pkgs
development
python-modules
deepdiff
+6 -5
pkgs/development/python-modules/deepdiff/default.nix
···
numpy,
pytestCheckHook,
python-dateutil,
tomli-w,
polars,
pandas,
}:
buildPythonPackage rec {
pname = "deepdiff";
-
version = "8.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "seperman";
repo = "deepdiff";
tag = version;
-
hash = "sha256-JIxlWy2uVpI98BmpH2+EyOxfYBoO2G2S0D9krduVo08=";
};
build-system = [
···
numpy
pytestCheckHook
python-dateutil
tomli-w
polars
pandas
]
++ lib.flatten (lib.attrValues optional-dependencies);
disabledTests = [
-
# not compatible with pydantic 2.x
-
"test_pydantic1"
-
"test_pydantic2"
# Require pytest-benchmark
"test_cache_deeply_nested_a1"
"test_lfu"
···
numpy,
pytestCheckHook,
python-dateutil,
+
pydantic,
tomli-w,
polars,
pandas,
+
uuid6,
}:
buildPythonPackage rec {
pname = "deepdiff";
+
version = "8.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "seperman";
repo = "deepdiff";
tag = version;
+
hash = "sha256-1DB1OgIS/TSMd+Pqd2vvW+qwM/b5+Dy3qStlg+asidE=";
};
build-system = [
···
numpy
pytestCheckHook
python-dateutil
+
pydantic
tomli-w
polars
pandas
+
uuid6
]
++ lib.flatten (lib.attrValues optional-dependencies);
disabledTests = [
# Require pytest-benchmark
"test_cache_deeply_nested_a1"
"test_lfu"