nixpkgs/pkgs/development/python-modules/nbsphinx/default.nix

48 lines
789 B
Nix
Raw Normal View History

2019-02-19 13:45:49 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, docutils
, jinja2
, nbconvert
, nbformat
, sphinx
, traitlets
2020-06-11 11:10:11 +01:00
, isPy3k
2019-02-19 13:45:49 +00:00
}:
buildPythonPackage rec {
pname = "nbsphinx";
version = "0.8.1";
2019-02-19 13:45:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "19lf036h0d9ryqasrh91myhn3dq5zcw4rik9jy6sayq7l6irmm94";
2019-02-19 13:45:49 +00:00
};
propagatedBuildInputs = [
docutils
jinja2
nbconvert
nbformat
sphinx
traitlets
];
# The package has not tests
doCheck = false;
JUPYTER_PATH = "${nbconvert}/share/jupyter";
pythonImportsCheck = [
"nbsphinx"
];
2019-02-19 13:45:49 +00:00
2020-06-11 11:10:11 +01:00
disabled = !isPy3k;
2019-02-19 13:45:49 +00:00
meta = with lib; {
description = "Jupyter Notebook Tools for Sphinx";
homepage = "https://nbsphinx.readthedocs.io/";
2019-02-19 13:45:49 +00:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}