forked from mirrors/nixpkgs
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
|
||||
, fetchPypi
|
||||
, zope_interface
|
||||
, sphinx, manuel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "persistent";
|
||||
version = "4.4.2";
|
||||
|
||||
nativeBuildInputs = [ sphinx manuel ];
|
||||
propagatedBuildInputs = [ zope_interface ];
|
||||
|
||||
src = fetchPypi {
|
||||
|
|
Loading…
Reference in a new issue