nixpkgs/pkgs/development/python-modules/hieroglyph/default.nix
Frederik Rietdijk 959842a9c7 Python: add pname attributes to libraries
so that we can use the update script.
2017-05-27 11:30:21 +02:00

28 lines
786 B
Nix

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