nixpkgs/pkgs/development/python-modules/pelican/default.nix
Johannes Bornhold 5b7f9db5c5 pelican: Disable pandoc support for now
Version 3.7.1 is not compatible with the current (more recent) pandoc version.
Since pandoc support is optional in pelican, we can ship it without pandoc
support until a fix will be applied upstream.

Kept a note in the buildInputs so that the improvement opportunity can be
spotted again on future updates of pelican.
2017-12-29 18:13:11 +01:00

68 lines
1.7 KiB
Nix

{ stdenv, buildPythonPackage, fetchFromGitHub, isPy26
, glibcLocales, pandoc, git
, mock, nose, markdown, lxml, typogrify
, jinja2, pygments, docutils, pytz, unidecode, six, dateutil, feedgenerator
, blinker, pillow, beautifulsoup4, markupsafe }:
buildPythonPackage rec {
pname = "pelican";
name = "${pname}-${version}";
version = "3.7.1";
disabled = isPy26;
src = fetchFromGitHub {
owner = "getpelican";
repo = "pelican";
rev = version;
sha256 = "0nkxrb77k2bra7bqckg7f5k73wk98hcbz7rimxl8sw05b2bvd62g";
};
doCheck = true;
checkPhase = ''
python -Wd -m unittest discover
'';
buildInputs = [
glibcLocales
# Note: Pelican has to adapt to a changed CLI of pandoc before enabling this
# again. Compare https://github.com/getpelican/pelican/pull/2252.
# Version 3.7.1 is incompatible with our current pandoc version.
# pandoc
git
mock
nose
markdown
typogrify
];
propagatedBuildInputs = [
jinja2 pygments docutils pytz unidecode six dateutil feedgenerator
blinker pillow beautifulsoup4 markupsafe lxml
];
postPatch= ''
substituteInPlace pelican/tests/test_pelican.py \
--replace "'git'" "'${git}/bin/git'"
'';
LC_ALL="en_US.UTF-8";
# We only want to patch shebangs in /bin, and not those
# of the project scripts that are created by Pelican.
# See https://github.com/NixOS/nixpkgs/issues/30116
dontPatchShebangs = true;
postFixup = ''
patchShebangs $out/bin
'';
meta = with stdenv.lib; {
description = "A tool to generate a static blog from reStructuredText or Markdown input files";
homepage = http://getpelican.com/;
license = licenses.agpl3;
maintainers = with maintainers; [ offline prikhi garbas ];
};
}