about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jupyter-sphinx/default.nix
blob: 9f2143e2f20d64f69ce38179f563f9f991d25e3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, nbformat
, sphinx
, ipywidgets
, pythonOlder
}:

buildPythonPackage rec {
  pname = "jupyter-sphinx";
  version = "0.2.4";

  src = fetchPypi {
    inherit version;
    pname = "jupyter_sphinx";
    sha256 = "b5ba1efdd1488b385de0068036a665932ed93998e40ce3a342c60f0926781fd9";
  };

  propagatedBuildInputs = [ 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;
  };    

}