lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[staging] python3.pkgs.sphinx-issues: avoid use of pandoc in build closure (riscv64-fix) (#393093)

authored by

Jörg Thalheim and committed by
GitHub
2a2de390 144bfe9c

-17
-17
pkgs/development/python-modules/sphinx-issues/default.nix
··· 3 3 buildPythonPackage, 4 4 sphinx, 5 5 fetchFromGitHub, 6 - pandoc, 7 6 }: 8 - 9 7 buildPythonPackage rec { 10 8 pname = "sphinx-issues"; 11 9 version = "3.0.1"; 12 10 format = "setuptools"; 13 - outputs = [ 14 - "out" 15 - "doc" 16 - ]; 17 11 18 12 src = fetchFromGitHub { 19 13 owner = "sloria"; ··· 25 19 pythonImportsCheck = [ "sphinx_issues" ]; 26 20 27 21 propagatedBuildInputs = [ sphinx ]; 28 - 29 - nativeBuildInputs = [ pandoc ]; 30 - 31 - postBuild = '' 32 - pandoc -f rst -t html --standalone < README.rst > README.html 33 - ''; 34 - 35 - postInstall = '' 36 - mkdir -p $doc/share/doc/$name/html 37 - cp README.html $doc/share/doc/$name/html 38 - ''; 39 22 40 23 meta = with lib; { 41 24 homepage = "https://github.com/sloria/sphinx-issues";