about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hieroglyph/default.nix
blob: 27d4b8a15b81f75517687490be7e14d25100f015 (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 = "1.0.0";
  name = "${pname}-${version}";

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

  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;
  };
}