python.pkgs.feedgen: init at 0.5.1

This commit is contained in:
Casey Rodarmor
2017-08-07 20:14:53 -07:00
parent 18fa60db30
commit 2141086af8
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, fetchurl, dateutil, lxml }:
buildPythonPackage rec {
pname = "feedgen";
version = "0.5.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "3a344b5e3662e9012d095a081a7f216f188dccf3a8f44ad7882960fef05e6787";
};
propagatedBuildInputs = [ dateutil lxml ];
doCheck = true;
meta = with stdenv.lib; {
description = "Python module to generate ATOM feeds, RSS feeds and Podcasts.";
downloadPage = https://github.com/lkiesow/python-feedgen/releases;
homepage = https://github.com/lkiesow/python-feedgen;
license = with licenses; [ bsd2 lgpl3 ];
maintainers = with maintainers; [ casey ];
};
}