2022-11-04T04:24:33 deepdiff 6.1.0 -> 6.2.1 https://github.com/seperman/deepdiff/releases 2022-11-04T04:24:36 attrpath: deepdiff 2022-11-04T04:24:36 Checking auto update branch... 2022-11-04T04:24:36 No auto update branch exists 2022-11-04T04:24:37 There might already be an open PR for this update: - python310Packages.deepdiff: 6.1.0 -> 6.2.1, python310Packages.pylitterbot: 2022.10.1 -> 2022.10.2 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/199408" 2022-11-04T18:02:59 deepdiff 5.8.2 -> 6.2.1 https://pypi.org/project/deepdiff/ 2022-11-04T18:03:02 attrpath: deepdiff 2022-11-04T18:03:02 Checking auto update branch... 2022-11-04T18:03:02 No auto update branch exists 2022-11-04T18:03:03 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 ]; }; }