depot/third_party/nixpkgs/pkgs/development/python-modules/jupyter-sphinx/default.nix
Default email 2ce5db779a Project import generated by Copybara.
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
2022-05-18 16:49:53 +02:00

33 lines
623 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nbformat
, sphinx
, ipywidgets
, pythonOlder
, nbconvert
}:
buildPythonPackage rec {
pname = "jupyter-sphinx";
version = "0.3.2";
src = fetchPypi {
inherit version;
pname = "jupyter_sphinx";
sha256 = "37fc9408385c45326ac79ca0452fbd7ae2bf0e97842d626d2844d4830e30aaf2";
};
propagatedBuildInputs = [ nbconvert nbformat sphinx ipywidgets ];
doCheck = false;
disabled = pythonOlder "3.5";
meta = with lib; {
description = "Jupyter Sphinx Extensions";
homepage = "https://github.com/jupyter/jupyter-sphinx/";
license = licenses.bsd3;
};
}