Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 776 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, glibcLocales 6, ipython_genutils 7, traitlets 8, testpath 9, jsonschema 10, jupyter_core 11}: 12 13buildPythonPackage rec { 14 pname = "nbformat"; 15 version = "4.4.0"; 16 name = "${pname}-${version}"; 17 18 src = fetchPypi { 19 inherit pname version; 20 sha256 = "f7494ef0df60766b7cabe0a3651556345a963b74dbc16bc7c18479041170d402"; 21 }; 22 LC_ALL="en_US.UTF-8"; 23 24 checkInputs = [ pytest glibcLocales ]; 25 propagatedBuildInputs = [ ipython_genutils traitlets testpath jsonschema jupyter_core ]; 26 27 # Failing tests and permission issues 28 doCheck = false; 29 30 meta = { 31 description = "The Jupyter Notebook format"; 32 homepage = http://jupyter.org/; 33 license = lib.licenses.bsd3; 34 maintainers = with lib.maintainers; [ fridh ]; 35 }; 36}