3
0
Fork 0
forked from mirrors/nixpkgs

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
, mock
, jsonpickle
, mmh3
, ordered-set
, numpy
, pytestCheckHook
@ -24,14 +25,9 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# skipped tests require murmur module
"test_prep_str_murmur3_64bit"
"test_prep_str_murmur3_128bit"
];
propagatedBuildInputs = [
jsonpickle
mmh3
ordered-set
];