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

@ -94,6 +94,7 @@
campadrenalin = "Philip Horger <campadrenalin@gmail.com>";
canndrew = "Andrew Cann <shum@canndrew.org>";
carlsverre = "Carl Sverre <accounts@carlsverre.com>";
casey = "Casey Rodarmor <casey@rodarmor.net>";
cdepillabout = "Dennis Gosnell <cdep.illabout@gmail.com>";
cfouche = "Chaddaï Fouché <chaddai.fouche@gmail.com>";
changlinli = "Changlin Li <mail@changlinli.com>";

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 ];
};
}

View file

@ -9795,6 +9795,8 @@ in {
};
};
feedgen = callPackage ../development/python-modules/feedgen { };
feedgenerator = callPackage ../development/python-modules/feedgenerator {
inherit (pkgs) glibcLocales;
};