python pelican: v3.4.0 -> v3.5.0

This commit is contained in:
Pavan Rikhi 2014-12-15 23:53:32 -05:00
parent bbd2be6075
commit c08310c62d

View File

@ -6590,11 +6590,11 @@ let
pelican = buildPythonPackage rec { pelican = buildPythonPackage rec {
name = "pelican-${version}"; name = "pelican-${version}";
version = "3.4.0"; version = "3.5.0";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pelican/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/p/pelican/${name}.tar.gz";
md5 = "8e57bdd075503903125b14621b1e533d"; sha256 = "0dl8i26sa20iijlg3z9gxn3p6f1d9v44b9742929xfaqwj4amvdp";
}; };
preConfigure = '' preConfigure = ''
@ -6606,13 +6606,16 @@ let
#buildInputs = [nose mock]; #buildInputs = [nose mock];
doCheck = false; doCheck = false;
propagatedBuildInputs = with self; [jinja2 pygments docutils pytz unidecode six dateutil feedgenerator blinker pillow beautifulsoup4]; propagatedBuildInputs = with self; [
jinja2 pygments docutils pytz unidecode six dateutil feedgenerator
blinker pillow beautifulsoup4
];
meta = { meta = {
homepage = http://getpelican.com/; homepage = http://getpelican.com/;
description = "A tool to generate a static blog from reStructuredText or Markdown input files"; description = "A tool to generate a static blog from reStructuredText or Markdown input files";
license = licenses.agpl3; license = licenses.agpl3;
maintainers = [ stdenv.lib.maintainers.offline ]; maintainers = with stdenv.lib.maintainers; [ offline prikhi ];
}; };
}; };