about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/podcastparser/default.nix
blob: c65a37a99b9dc7acf742acf74e1e672f83bba91d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchFromGitHub, nose }:

buildPythonPackage rec {
  pname = "podcastparser";
  version = "0.6.5";

  src = fetchFromGitHub {
    owner = "gpodder";
    repo = "podcastparser";
    rev = version;
    sha256 = "1s83iq0mxcikxv6gi003iyavl1ai3siw1d7arijh0g28l0fff23a";
  };

  checkInputs = [ nose ];

  checkPhase = ''
    nosetests test_*.py
  '';

  meta = {
    description = "podcastparser is a simple, fast and efficient podcast parser written in Python.";
    homepage = "http://gpodder.org/podcastparser/";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ mic92 ];
  };
}