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