evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / nbsphinx / default.nix
blobc819eee79ab6007fd064c9b3787161a605a4cc15
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   docutils,
7   jinja2,
8   nbconvert,
9   nbformat,
10   sphinx,
11   traitlets,
12   pythonOlder,
15 buildPythonPackage rec {
16   pname = "nbsphinx";
17   version = "0.9.5";
18   pyproject = true;
20   disabled = pythonOlder "3.7";
22   src = fetchPypi {
23     inherit pname version;
24     hash = "sha256-c2kW57Daso/JBPSprjtTqaUMKfzMYynAUvzHSFq88rc=";
25   };
27   build-system = [ setuptools ];
29   dependencies = [
30     docutils
31     jinja2
32     nbconvert
33     nbformat
34     sphinx
35     traitlets
36   ];
38   # The package has not tests
39   doCheck = false;
41   JUPYTER_PATH = "${nbconvert}/share/jupyter";
43   pythonImportsCheck = [ "nbsphinx" ];
45   meta = with lib; {
46     description = "Jupyter Notebook Tools for Sphinx";
47     homepage = "https://nbsphinx.readthedocs.io/";
48     changelog = "https://github.com/spatialaudio/nbsphinx/blob/${version}/NEWS.rst";
49     license = licenses.mit;
50     maintainers = [ ];
51   };