2018-06-23 06:27:58 -07:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, sphinx }:
|
2017-02-27 14:09:24 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "hieroglyph";
|
2017-10-25 11:04:35 -07:00
|
|
|
version = "1.0.0";
|
2017-02-27 14:09:24 -08:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-10-25 11:04:35 -07:00
|
|
|
sha256 = "8e137f0b1cd60c47b870011089790d3c8ddb74fcf409a75ddf2c7f2516ff337c";
|
2017-02-27 14:09:24 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/nyergler/hieroglyph/";
|
2017-02-27 14:09:24 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ juliendehos ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|