1{ lib, buildPythonPackage, fetchPypi, python-dateutil, lxml }:
2
3buildPythonPackage rec {
4 pname = "feedgen";
5 version = "0.9.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
10 };
11
12 propagatedBuildInputs = [ python-dateutil lxml ];
13
14 # No tests in archive
15 doCheck = false;
16
17 meta = with lib; {
18 description = "Python module to generate ATOM feeds, RSS feeds and Podcasts.";
19 downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
20 homepage = "https://github.com/lkiesow/python-feedgen";
21 license = with licenses; [ bsd2 lgpl3 ];
22 maintainers = with maintainers; [ casey ];
23 };
24}