2022-12-26T10:44:57 deepdiff 5.8.2 -> 6.2.2 https://pypi.org/project/deepdiff/ 2022-12-26T10:44:59 attrpath: deepdiff 2022-12-26T10:44:59 Checking auto update branch... 2022-12-26T10:44:59 No auto update branch exists 2022-12-26T10:45:00 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.2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "seperman"; repo = "deepdiff"; rev = "refs/tags/${version}"; hash = "sha256-AKah3A9srKm/cFWM7IiZ7JxQ8s0KTuh8VLKOymsDgnA="; }; 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 ]; }; }