lol

pythonPackages: add pelican, simple blog generator

+55
+55
pkgs/top-level/python-packages.nix
··· 865 865 }; 866 866 867 867 868 + blinker = buildPythonPackage rec { 869 + name = "blinker-${version}"; 870 + version = "1.3"; 871 + 872 + src = fetchurl { 873 + url = "https://pypi.python.org/packages/source/b/blinker/${name}.tar.gz"; 874 + md5 = "66e9688f2d287593a0e698cd8a5fbc57"; 875 + }; 876 + 877 + meta = with stdenv.lib; { 878 + homepage = http://pythonhosted.org/blinker/; 879 + description = "Fast, simple object-to-object and broadcast signaling"; 880 + license = licenses.mit; 881 + }; 882 + }; 883 + 884 + 868 885 blockdiag = buildPythonPackage rec { 869 886 name = "blockdiag-1.3.2"; 870 887 ··· 3436 3453 }; 3437 3454 }; 3438 3455 3456 + feedgenerator = buildPythonPackage (rec { 3457 + name = "feedgenerator-1.7"; 3458 + 3459 + src = fetchurl { 3460 + url = "https://pypi.python.org/packages/source/f/feedgenerator/${name}.tar.gz"; 3461 + md5 = "92978492871342ad64e8ae0ccfcf200c"; 3462 + }; 3463 + 3464 + propagatedBuildInputs = [ six pytz ]; 3465 + 3466 + meta = { 3467 + homepage = https://github.com/dmdm/feedgenerator-py3k.git; 3468 + description = "Standalone version of django.utils.feedgenerator, compatible with Py3k"; 3469 + }; 3470 + }); 3439 3471 3440 3472 feedparser = buildPythonPackage (rec { 3441 3473 name = "feedparser-5.1.3"; ··· 5751 5783 description = "Python Build Reasonableness"; 5752 5784 homepage = "http://docs.openstack.org/developer/pbr/"; 5753 5785 license = licenses.asl20; 5786 + }; 5787 + }; 5788 + 5789 + pelican = buildPythonPackage rec { 5790 + name = "pelican-${version}"; 5791 + version = "3.4.0"; 5792 + 5793 + src = fetchurl { 5794 + url = "https://pypi.python.org/packages/source/p/pelican/${name}.tar.gz"; 5795 + md5 = "8e57bdd075503903125b14621b1e533d"; 5796 + }; 5797 + 5798 + # Test data not provided 5799 + #buildInputs = [nose mock]; 5800 + doCheck = false; 5801 + 5802 + propagatedBuildInputs = [jinja2 pygments docutils pytz unidecode six dateutil feedgenerator blinker pillow beautifulsoup4]; 5803 + 5804 + meta = { 5805 + homepage = http://getpelican.com/; 5806 + description = "A tool to generate a static blog from reStructuredText or Markdown input files"; 5807 + license = licenses.agpl3; 5808 + maintainers = [ stdenv.lib.maintainers.offline ]; 5754 5809 }; 5755 5810 }; 5756 5811