python3Packages.sphinxcontrib-websupport: fix missing deps

This commit is contained in:
Jonathan Ringer 2020-08-16 15:32:38 -07:00
parent ebe30ae849
commit ad9b5ba4b9
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, sphinxcontrib-serializinghtml
, six , six
}: }:
@ -13,7 +14,7 @@ buildPythonPackage rec {
sha256 = "4edf0223a0685a7c485ae5a156b6f529ba1ee481a1417817935b20bde1956232"; sha256 = "4edf0223a0685a7c485ae5a156b6f529ba1ee481a1417817935b20bde1956232";
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six sphinxcontrib-serializinghtml ];
doCheck = false; doCheck = false;