about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2017-07-22 10:20:26 +0800
committerFrederik Rietdijk <fridh@fridh.nl>2017-07-28 16:13:28 +0200
commitb5f436cf0ec148bed1f901a2bccabb366fc49753 (patch)
tree7e72108d23afb15793d8a521d65ec139e204ab5d /pkgs
parent00bf3a9dcaffedc4eaf244848a2a3f84e648bdba (diff)
downloadnixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.tar
nixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.tar.gz
nixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.tar.bz2
nixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.tar.lz
nixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.tar.xz
nixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.tar.zst
nixlib-b5f436cf0ec148bed1f901a2bccabb366fc49753.zip
pythonPackages.zconfig: Add missing build-time only dependencies
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/zconfig/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/zconfig/default.nix b/pkgs/development/python-modules/zconfig/default.nix
index aa90bf0ce1a6..5e7c762d03af 100644
--- a/pkgs/development/python-modules/zconfig/default.nix
+++ b/pkgs/development/python-modules/zconfig/default.nix
@@ -2,6 +2,8 @@
 , fetchPypi
 , buildPythonPackage
 , zope_testrunner
+, manuel
+, docutils
 }:
 
 buildPythonPackage rec {
@@ -16,6 +18,7 @@ buildPythonPackage rec {
 
   patches = [ ./skip-broken-test.patch ];
 
+  buildInputs = [ manuel docutils ];
   propagatedBuildInputs = [ zope_testrunner ];
 
   meta = with stdenv.lib; {