From 85a603c73878184a659eb41d87fab70de723d167 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 30 Dec 2018 10:13:41 -0500 Subject: [PATCH] pythonPackages.clize: fix build We just needed to add some deps. --- .../python-modules/clize/default.nix | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/clize/default.nix b/pkgs/development/python-modules/clize/default.nix index d2eac77a14b..ef7047afe7d 100644 --- a/pkgs/development/python-modules/clize/default.nix +++ b/pkgs/development/python-modules/clize/default.nix @@ -3,6 +3,13 @@ , fetchPypi , dateutil , sigtools +, six +, attrs +, od +, docutils +, repeated_test +, unittest2 +, pygments }: buildPythonPackage rec { @@ -14,8 +21,20 @@ buildPythonPackage rec { sha256 = "dbcfba5571dc30aaf90dc98fc279e2aab69d0f8f3665fc0394fbc10a87a2be60"; }; - buildInputs = [ dateutil ]; - propagatedBuildInputs = [ sigtools ]; + checkInputs = [ + dateutil + pygments + repeated_test + unittest2 + ]; + + propagatedBuildInputs = [ + attrs + docutils + od + sigtools + six + ]; meta = with stdenv.lib; { description = "Command-line argument parsing for Python";