forked from mirrors/nixpkgs
hieroglyph: init at 0.7.1
This commit is contained in:
parent
81b43ccd57
commit
78ede3ab1f
26
pkgs/development/python-modules/hieroglyph/default.nix
Normal file
26
pkgs/development/python-modules/hieroglyph/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
|
@ -24675,6 +24675,8 @@ in {
|
|||
doCheck = false;
|
||||
};
|
||||
|
||||
hieroglyph = callPackage ../development/python-modules/hieroglyph { };
|
||||
|
||||
sphinx_rtd_theme = buildPythonPackage (rec {
|
||||
name = "sphinx_rtd_theme-0.1.9";
|
||||
|
||||
|
|
Loading…
Reference in a new issue