2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
click,
|
|
|
|
ordered-set,
|
|
|
|
orjson,
|
|
|
|
clevercsv,
|
|
|
|
jsonpickle,
|
|
|
|
numpy,
|
|
|
|
pytestCheckHook,
|
|
|
|
python-dateutil,
|
|
|
|
pyyaml,
|
|
|
|
toml,
|
|
|
|
tomli-w,
|
|
|
|
pythonOlder,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "deepdiff";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "7.0.1";
|
2021-04-26 19:14:03 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "seperman";
|
|
|
|
repo = "deepdiff";
|
2022-10-30 15:09:59 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-HqmAE5sLwyjyUahIUeRIJW0c5eliq/qEzE2FydHwc70=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tests/test_command.py \
|
|
|
|
--replace '/tmp/' "$TMPDIR/"
|
|
|
|
'';
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
propagatedBuildInputs = [
|
2024-06-05 15:53:02 +00:00
|
|
|
click
|
2021-04-26 19:14:03 +00:00
|
|
|
ordered-set
|
2023-02-09 11:40:11 +00:00
|
|
|
orjson
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
passthru.optional-dependencies = {
|
|
|
|
cli = [
|
|
|
|
clevercsv
|
|
|
|
click
|
|
|
|
pyyaml
|
|
|
|
toml
|
|
|
|
];
|
|
|
|
};
|
2021-04-26 19:14:03 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2020-04-24 23:36:52 +00:00
|
|
|
jsonpickle
|
2021-04-26 19:14:03 +00:00
|
|
|
numpy
|
|
|
|
pytestCheckHook
|
2023-04-12 12:48:02 +00:00
|
|
|
python-dateutil
|
2023-11-16 04:20:00 +00:00
|
|
|
tomli-w
|
2022-10-30 15:09:59 +00:00
|
|
|
] ++ passthru.optional-dependencies.cli;
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
disabledTests = [
|
|
|
|
# not compatible with pydantic 2.x
|
|
|
|
"test_pydantic1"
|
|
|
|
"test_pydantic2"
|
|
|
|
];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "deepdiff" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Deep Difference and Search of any Python object/data";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "deep";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/seperman/deepdiff";
|
2022-10-30 15:09:59 +00:00
|
|
|
changelog = "https://github.com/seperman/deepdiff/releases/tag/${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2022-06-16 17:23:12 +00:00
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|