1{ lib
2, buildPythonPackage
3, fetchPypi
4, mock
5, jsonpickle
6, ordered-set
7, numpy
8, pytestCheckHook
9}:
10
11buildPythonPackage rec {
12 pname = "deepdiff";
13 version = "4.0.9";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "5e2343398e90538edaa59c0c99207e996a3a834fdc878c666376f632a760c35a";
18 };
19
20 # # Extra packages (may not be necessary)
21 checkInputs = [
22 mock
23 numpy
24 pytestCheckHook
25 ];
26
27 disabledTests = [
28 # skipped tests require murmur module
29 "test_prep_str_murmur3_64bit"
30 "test_prep_str_murmur3_128bit"
31 ];
32
33 propagatedBuildInputs = [
34 jsonpickle
35 ordered-set
36 ];
37
38 meta = with lib; {
39 description = "Deep Difference and Search of any Python object/data";
40 homepage = "https://github.com/seperman/deepdiff";
41 license = licenses.mit;
42 maintainers = [ maintainers.mic92 ];
43 };
44}