1{ stdenv , fetchurl , buildPythonPackage , sphinx }:
2
3buildPythonPackage rec {
4 pname = "hieroglyph";
5 version = "0.7.1";
6 name = "${pname}-${version}";
7
8 src = fetchurl {
9 url = "mirror://pypi/h/hieroglyph/${name}.tar.gz";
10 sha256 = "0rswfk7x6zlj1z8388f153k3zn2h52k5h9b6p57pn7kqagsjilcb";
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