pythonPackages.persistent: fix build (#46364)
Documentation-related tests failed, the docs didn't build correctly because of missing dependencies sphinx and manuel. Add them.
This commit is contained in:
parent
73e75a7d16
commit
113f4d7b44
@ -1,12 +1,14 @@
|
|||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, zope_interface
|
, zope_interface
|
||||||
|
, sphinx, manuel
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "persistent";
|
pname = "persistent";
|
||||||
version = "4.4.2";
|
version = "4.4.2";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ sphinx manuel ];
|
||||||
propagatedBuildInputs = [ zope_interface ];
|
propagatedBuildInputs = [ zope_interface ];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user