summary refs log tree commit diff
path: root/pkgs/development/python-modules/hieroglyph/default.nix
blob: 9e97e56c1341fcb5aecdb39bd47e2a313870d7a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv , fetchurl , buildPythonPackage , sphinx }:

buildPythonPackage rec {
  pname = "hieroglyph";
  version = "0.7.1";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "mirror://pypi/h/hieroglyph/${name}.tar.gz";
    sha256 = "0rswfk7x6zlj1z8388f153k3zn2h52k5h9b6p57pn7kqagsjilcb";
  };

  propagatedBuildInputs = [ sphinx ];

  # all tests fail; don't know why:
  # test_absolute_paths_made_relative (hieroglyph.tests.test_path_fixing.PostProcessImageTests) ... ERROR
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Generate HTML presentations from plain text sources";
    homepage = https://github.com/nyergler/hieroglyph/;
    license = licenses.bsd3;
    maintainers = with maintainers; [ juliendehos ];
    platforms = platforms.unix;
  };
}