nixpkgs/pkgs/development/python-modules/hieroglyph/default.nix

26 lines
705 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, sphinx }:
2017-02-27 22:09:24 +00:00
buildPythonPackage rec {
pname = "hieroglyph";
2017-10-25 18:04:35 +00:00
version = "1.0.0";
2017-02-27 22:09:24 +00:00
src = fetchPypi {
inherit pname version;
2017-10-25 18:04:35 +00:00
sha256 = "8e137f0b1cd60c47b870011089790d3c8ddb74fcf409a75ddf2c7f2516ff337c";
2017-02-27 22:09:24 +00: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";
homepage = https://github.com/nyergler/hieroglyph/;
license = licenses.bsd3;
maintainers = with maintainers; [ juliendehos ];
};
}