lol
at 18.09-beta 24 lines 746 B view raw
1{ fetchFromGitHub, pythonPackages, stdenv }: 2 3with pythonPackages; 4buildPythonApplication rec { 5 pname = "MarkdownPP"; 6 version = "1.4"; 7 propagatedBuildInputs = [ pillow watchdog ]; 8 checkPhase = '' 9 cd test 10 PATH=$out/bin:$PATH ${python}/bin/${python.executable} test.py 11 ''; 12 src = fetchFromGitHub { 13 owner = "jreese"; 14 repo = "markdown-pp"; 15 rev = "v${version}"; 16 sha256 = "1xmc0cxvvf6jzr7p4f0hm8icysrd44sy2kgff9b99lr1agwkmysq"; 17 }; 18 meta = with stdenv.lib; { 19 description = "Preprocessor for Markdown files to generate a table of contents and other documentation needs"; 20 license = licenses.mit; 21 homepage = "https://github.com/jreese/markdown-pp"; 22 maintainers = with maintainers; [ zgrannan ]; 23 }; 24}