3
0
Fork 0
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:
xeji 2018-09-08 21:35:33 +02:00 committed by GitHub
parent 73e75a7d16
commit 113f4d7b44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {