summary refs log tree commit diff
path: root/pkgs/applications/audio/greg/default.nix
blob: e027680f5fe64d88ad37faf78589bc2d21da0a1c (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
{ stdenv, fetchFromGitHub, pythonPackages }:

with pythonPackages; buildPythonApplication rec {
  pname = "greg";
  version = "0.4.7";

  disabled = !isPy3k;

  src = fetchFromGitHub {
    owner = "manolomartinez";
    repo = pname;
    rev = "v" + version;
    sha256 = "0bdzgh2k1ppgcvqiasxwp3w89q44s4jgwjidlips3ixx1bzm822v";
  };

  buildInputs = with pythonPackages; [ feedparser ];
  propagatedBuildInputs = buildInputs;

  meta = with stdenv.lib; {
    homepage = "https://github.com/manolomartinez/greg";
    description = "A command-line podcast aggregator";
    license = licenses.gpl3;
    maintainers = with maintainers; [ edwtjo ];
  };
}