2022-10-28T20:06:02 deepdiff 5.8.2 -> 6.2.1 https://pypi.org/project/deepdiff/ 2022-10-28T20:06:04 attrpath: deepdiff 2022-10-28T20:06:05 Checking auto update branch... 2022-10-28T20:06:05 No auto update branch exists 2022-10-28T20:06:06 Old version 5.8.2" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , click , ordered-set , clevercsv , jsonpickle , numpy , pytestCheckHook , pyyaml , toml , pythonOlder }: buildPythonPackage rec { pname = "deepdiff"; version = "6.1.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "seperman"; repo = "deepdiff"; rev = "refs/tags/${version}"; hash = "sha256-ngtQNyVQaywMyYitj37m0RJGBiMpjB4b8Rn+feMOjVU="; }; postPatch = '' substituteInPlace tests/test_command.py \ --replace '/tmp/' "$TMPDIR/" ''; propagatedBuildInputs = [ ordered-set ]; passthru.optional-dependencies = { cli = [ clevercsv click pyyaml toml ]; }; checkInputs = [ jsonpickle numpy pytestCheckHook ] ++ passthru.optional-dependencies.cli; pythonImportsCheck = [ "deepdiff" ]; meta = with lib; { description = "Deep Difference and Search of any Python object/data"; homepage = "https://github.com/seperman/deepdiff"; changelog = "https://github.com/seperman/deepdiff/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ mic92 ]; }; }