mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.zconfig: Add missing build-time only dependencies
This commit is contained in:
parent
00bf3a9dca
commit
b5f436cf0e
1 changed files with 3 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, zope_testrunner
|
, zope_testrunner
|
||||||
|
, manuel
|
||||||
|
, docutils
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -16,6 +18,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
patches = [ ./skip-broken-test.patch ];
|
patches = [ ./skip-broken-test.patch ];
|
||||||
|
|
||||||
|
buildInputs = [ manuel docutils ];
|
||||||
propagatedBuildInputs = [ zope_testrunner ];
|
propagatedBuildInputs = [ zope_testrunner ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue