Merge pull request #23251 from juliendehos/hieroglyph

hieroglyph: init at 0.7.1
This commit is contained in:
goibhniu 2017-03-25 13:00:34 +01:00 committed by GitHub
commit efc457c6e2
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv , fetchurl , buildPythonPackage , sphinx }:
buildPythonPackage rec {
version = "0.7.1";
name = "hieroglyph-${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;
};
}

View file

@ -24773,6 +24773,8 @@ in {
doCheck = false;
};
hieroglyph = callPackage ../development/python-modules/hieroglyph { };
sphinx_rtd_theme = buildPythonPackage (rec {
name = "sphinx_rtd_theme-0.1.9";