Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchFromGitHub, nose }: 2 3buildPythonPackage rec { 4 pname = "podcastparser"; 5 version = "0.6.4"; 6 7 src = fetchFromGitHub { 8 owner = "gpodder"; 9 repo = "podcastparser"; 10 rev = version; 11 sha256 = "10bk93fqsws360q1gkjvfzjda3351169zbr6v5lq9raa3mg1ln52"; 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}