1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 python-dateutil,
6 lxml,
7}:
8
9buildPythonPackage rec {
10 pname = "feedgen";
11 version = "1.0.0";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-2b1Rw7XpVqKlKZjDcIxNLHKfL8wxEYjh5dO5cmOTVGo=";
17 };
18
19 propagatedBuildInputs = [
20 python-dateutil
21 lxml
22 ];
23
24 # No tests in archive
25 doCheck = false;
26
27 meta = with lib; {
28 description = "Python module to generate ATOM feeds, RSS feeds and Podcasts";
29 downloadPage = "https://github.com/lkiesow/python-feedgen/releases";
30 homepage = "https://github.com/lkiesow/python-feedgen";
31 license = with licenses; [
32 bsd2
33 lgpl3
34 ];
35 maintainers = with maintainers; [ casey ];
36 };
37}