pythonPackages.structlog: add six to propagatedBuildInputs

Move simplejson to checkInputs
This commit is contained in:
Mario Rodas 2018-10-14 12:48:33 -05:00
parent 4207f01f27
commit 82f3fc0c83

View File

@ -6,6 +6,7 @@
, pretend , pretend
, freezegun , freezegun
, simplejson , simplejson
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -25,8 +26,8 @@ buildPythonPackage rec {
}) })
]; ];
checkInputs = [ pytest pretend freezegun ]; checkInputs = [ pytest pretend freezegun simplejson ];
propagatedBuildInputs = [ simplejson ]; propagatedBuildInputs = [ six ];
checkPhase = '' checkPhase = ''
rm tests/test_twisted.py* rm tests/test_twisted.py*