nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.nbsphinx: init at 0.4.2

authored by

Chris Ostrouchov and committed by
Frederik Rietdijk
e6aa9ac7 7c3d9d44

+44 -1
+41
pkgs/development/python-modules/nbsphinx/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , docutils 5 + , jinja2 6 + , nbconvert 7 + , nbformat 8 + , sphinx 9 + , traitlets 10 + , python 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "nbsphinx"; 15 + version = "0.4.2"; 16 + 17 + src = fetchPypi { 18 + inherit pname version; 19 + sha256 = "b794219e465b3aab500b800884ff40fd152bb19d8b6f87580de1f3a07170aef8"; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + docutils 24 + jinja2 25 + nbconvert 26 + nbformat 27 + sphinx 28 + traitlets 29 + ]; 30 + 31 + checkPhase = '' 32 + ${python.interpreter} -m nbsphinx 33 + ''; 34 + 35 + meta = with lib; { 36 + description = "Jupyter Notebook Tools for Sphinx"; 37 + homepage = https://nbsphinx.readthedocs.io/; 38 + license = licenses.mit; 39 + maintainers = [ maintainers.costrouc ]; 40 + }; 41 + }
+3 -1
pkgs/top-level/python-packages.nix
··· 305 305 cdecimal = callPackage ../development/python-modules/cdecimal { }; 306 306 307 307 cfn-flip = callPackage ../development/python-modules/cfn-flip { }; 308 - 308 + 309 309 chalice = callPackage ../development/python-modules/chalice { }; 310 310 311 311 cleo = callPackage ../development/python-modules/cleo { }; ··· 491 491 mwoauth = callPackage ../development/python-modules/mwoauth { }; 492 492 493 493 nanomsg-python = callPackage ../development/python-modules/nanomsg-python { inherit (pkgs) nanomsg; }; 494 + 495 + nbsphinx = callPackage ../development/python-modules/nbsphinx { }; 494 496 495 497 nbval = callPackage ../development/python-modules/nbval { }; 496 498