1{ stdenv, buildPythonPackage, fetchPypi, dateutil, lxml }:
2
3buildPythonPackage rec {
4 pname = "feedgen";
5 version = "0.7.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "82c9e29884e137c3e3e7959a02f142d1f7a46cd387d572e9e40150112a27604f";
10 };
11
12 propagatedBuildInputs = [ dateutil lxml ];
13
14 # No tests in archive
15 doCheck = false;
16
17 meta = with stdenv.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}