{ lib , buildPythonPackage , fetchPypi , pytest , glibcLocales , ipython_genutils , traitlets , testpath , jsonschema , jupyter_core }: buildPythonPackage rec { pname = "nbformat"; version = "5.0.6"; src = fetchPypi { inherit pname version; sha256 = "049af048ed76b95c3c44043620c17e56bc001329e07f83fec4f177f0e3d7b757"; }; LC_ALL="en_US.utf8"; checkInputs = [ pytest glibcLocales ]; propagatedBuildInputs = [ ipython_genutils traitlets testpath jsonschema jupyter_core ]; preCheck = '' mkdir tmp export HOME=tmp ''; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; meta = { description = "The Jupyter Notebook format"; homepage = "https://jupyter.org/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh globin ]; }; }