1{ lib, buildPythonPackage, fetchFromGitHub, nose }:
2
3buildPythonPackage rec {
4 pname = "podcastparser";
5 version = "0.6.2";
6
7 src = fetchFromGitHub {
8 owner = "gpodder";
9 repo = "podcastparser";
10 rev = version;
11 sha256 = "1mhg7192d6s1ll9mx1b63yfj6k4cnv4i95jllbnydyjv9ykkv0k1";
12 };
13
14 propagatedBuildInputs = [ ];
15
16 buildInputs = [ nose ];
17
18 checkPhase = "nosetests test_*.py";
19
20 meta = {
21 description = "podcastparser is a simple, fast and efficient podcast parser written in Python.";
22 homepage = http://gpodder.org/podcastparser/;
23 license = lib.licenses.bsd2;
24 maintainers = with lib.maintainers; [ mic92 ];
25 };
26}