Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hieroglyph / default.nix
blobd2f3168a76a1d5f0c5620c3e1a5dbad989d7c038
1 { lib, fetchPypi, buildPythonPackage, isPy27, sphinx }:
3 buildPythonPackage rec {
4   pname = "hieroglyph";
5   version = "2.1.0";
6   format = "setuptools";
7   disabled = isPy27; # python2 compatible sphinx is too low
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "b4b5db13a9d387438e610c2ca1d81386ccd206944d9a9dd273f21874486cddaf";
12   };
14   propagatedBuildInputs = [ sphinx ];
16   # all tests fail; don't know why:
17   # test_absolute_paths_made_relative (hieroglyph.tests.test_path_fixing.PostProcessImageTests) ... ERROR
18   doCheck = false;
20   meta = with lib; {
21     description = "Generate HTML presentations from plain text sources";
22     homepage = "https://github.com/nyergler/hieroglyph/";
23     license = licenses.bsd3;
24     maintainers = with maintainers; [ juliendehos ];
25   };