python.pkgs.nbsphinx: python3 only

This commit is contained in:
Frederik Rietdijk 2020-06-11 12:10:11 +02:00
parent 1a012f3fa7
commit 98381679c8

View File

@ -8,6 +8,7 @@
, sphinx
, traitlets
, python
, isPy3k
}:
buildPythonPackage rec {
@ -32,6 +33,8 @@ buildPythonPackage rec {
${python.interpreter} -m nbsphinx
'';
disabled = !isPy3k;
meta = with lib; {
description = "Jupyter Notebook Tools for Sphinx";
homepage = "https://nbsphinx.readthedocs.io/";