1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 nbconvert, 6 nbformat, 7 notebook, 8 pandoc-attributes, 9 six, 10}: 11 12buildPythonPackage rec { 13 pname = "notedown"; 14 version = "1.5.1"; 15 format = "setuptools"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "36e033ebbbe5aca0fab031ffaf3611d5bc5c50237df68ff81bb95f8be353a1ee"; 20 }; 21 22 propagatedBuildInputs = [ 23 notebook 24 nbconvert 25 nbformat 26 pandoc-attributes 27 six 28 ]; 29 30 # No tests in pypi source 31 doCheck = false; 32 33 meta = { 34 homepage = "https://github.com/aaren/notedown"; 35 description = "Convert IPython Notebooks to markdown (and back)"; 36 mainProgram = "notedown"; 37 license = lib.licenses.bsd2; 38 maintainers = with lib.maintainers; [ vcanadi ]; 39 }; 40}