nixpkgs/pkgs/development/python-modules/deepdiff/default.nix
2022-11-03 22:26:51 +01:00

65 lines
1.2 KiB
Nix

{ 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 ];
};
}