2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, dateutil, lxml }:
|
2017-08-08 04:14:53 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "feedgen";
|
2019-09-28 05:44:01 +01:00
|
|
|
version = "0.8.0";
|
2017-08-08 04:14:53 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-09-28 05:44:01 +01:00
|
|
|
sha256 = "0551ixbcz2gaala4gi3i8gici3haijj7dhvjsz1a61s050276m96";
|
2017-08-08 04:14:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dateutil lxml ];
|
|
|
|
|
2017-10-25 19:04:35 +01:00
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
2017-08-08 04:14:53 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|