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