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