2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, dateutil, lxml }:
|
2017-08-08 05:14:53 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "feedgen";
|
2020-02-09 10:05:47 +01:00
|
|
|
version = "0.9.0";
|
2017-08-08 05:14:53 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-09 10:05:47 +01:00
|
|
|
sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
|
2017-08-08 05:14:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dateutil lxml ];
|
|
|
|
|
2017-10-25 20:04:35 +02:00
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
2017-08-08 05:14:53 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python module to generate ATOM feeds, RSS feeds and Podcasts.";
|
2020-04-01 03:11:51 +02:00
|
|
|
downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
|
|
|
|
homepage = "https://github.com/lkiesow/python-feedgen";
|
2017-08-08 05:14:53 +02:00
|
|
|
license = with licenses; [ bsd2 lgpl3 ];
|
|
|
|
maintainers = with maintainers; [ casey ];
|
|
|
|
};
|
|
|
|
}
|