1{ lib, buildPythonPackage, fetchFromGitHub, nose }:
2
3buildPythonPackage rec {
4 pname = "podcastparser";
5 version = "0.6.5";
6
7 src = fetchFromGitHub {
8 owner = "gpodder";
9 repo = "podcastparser";
10 rev = version;
11 sha256 = "1s83iq0mxcikxv6gi003iyavl1ai3siw1d7arijh0g28l0fff23a";
12 };
13
14 checkInputs = [ nose ];
15
16 checkPhase = ''
17 nosetests test_*.py
18 '';
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}