1{ stdenv, fetchPypi, buildPythonPackage, sphinx }: 2 3buildPythonPackage rec { 4 pname = "hieroglyph"; 5 version = "1.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8e137f0b1cd60c47b870011089790d3c8ddb74fcf409a75ddf2c7f2516ff337c"; 10 }; 11 12 propagatedBuildInputs = [ sphinx ]; 13 14 # all tests fail; don't know why: 15 # test_absolute_paths_made_relative (hieroglyph.tests.test_path_fixing.PostProcessImageTests) ... ERROR 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Generate HTML presentations from plain text sources"; 20 homepage = https://github.com/nyergler/hieroglyph/; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ juliendehos ]; 23 }; 24} 25