python3Packages.deepdiff: fix by adding mmh3 dependency

This commit is contained in:
Daniël de Kok 2020-08-28 18:23:54 +02:00 committed by Jon
parent 1beb19e39d
commit ef3dc7be23

View File

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, mock , mock
, jsonpickle , jsonpickle
, mmh3
, ordered-set , ordered-set
, numpy , numpy
, pytestCheckHook , pytestCheckHook
@ -24,14 +25,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
disabledTests = [
# skipped tests require murmur module
"test_prep_str_murmur3_64bit"
"test_prep_str_murmur3_128bit"
];
propagatedBuildInputs = [ propagatedBuildInputs = [
jsonpickle jsonpickle
mmh3
ordered-set ordered-set
]; ];