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