lol

python3Packages.nbformat: 5.4.0 -> 5.5.0

+19 -3
+19 -3
pkgs/development/python-modules/nbformat/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , fastjsonschema 5 + , flit-core 5 6 , pytestCheckHook 6 7 , glibcLocales 7 8 , ipython_genutils ··· 9 10 , testpath 10 11 , jsonschema 11 12 , jupyter_core 13 + , pep440 12 14 }: 13 15 14 16 buildPythonPackage rec { 15 17 pname = "nbformat"; 16 - version = "5.4.0"; 18 + version = "5.5.0"; 19 + format = "pyproject"; 17 20 18 21 src = fetchPypi { 19 22 inherit pname version; 20 - sha256 = "sha256-RLpcpqy4DF1aUA8eW4Pt6MvjZNWklcTIz2Cq8bplZQE="; 23 + sha256 = "sha256-nr4w5sOz5bR9Of8KOJehrPUj0r+vy04tBM23D4pmxQc="; 21 24 }; 25 + 26 + nativeBuildInputs = [ 27 + flit-core 28 + ]; 22 29 23 30 LC_ALL="en_US.utf8"; 24 31 32 + propagatedBuildInputs = [ 33 + fastjsonschema 34 + ipython_genutils 35 + jsonschema 36 + jupyter_core 37 + pep440 38 + testpath 39 + traitlets 40 + ]; 41 + 25 42 checkInputs = [ pytestCheckHook glibcLocales ]; 26 - propagatedBuildInputs = [ ipython_genutils traitlets testpath jsonschema jupyter_core fastjsonschema ]; 27 43 28 44 preCheck = '' 29 45 mkdir tmp