2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, dateutil, lxml }:
|
2017-08-08 04:14:53 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "feedgen";
|
2020-02-09 09:05:47 +00:00
|
|
|
version = "0.9.0";
|
2017-08-08 04:14:53 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-09 09:05:47 +00:00
|
|
|
sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-08-08 04:14:53 +01:00
|
|
|
description = "Python module to generate ATOM feeds, RSS feeds and Podcasts.";
|
2020-04-01 02:11:51 +01:00
|
|
|
downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
|
|
|
|
homepage = "https://github.com/lkiesow/python-feedgen";
|
2017-08-08 04:14:53 +01:00
|
|
|
license = with licenses; [ bsd2 lgpl3 ];
|
|
|
|
maintainers = with maintainers; [ casey ];
|
|
|
|
};
|
|
|
|
}
|