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