nixos/doh-server: init
[NixPkgs.git] / pkgs / applications / audio / greg / default.nix
blobdc9fb72f4425833e57a8684ef49e11dba4dba067
2   lib,
3   fetchFromGitHub,
4   pythonPackages,
5 }:
7 with pythonPackages;
8 buildPythonApplication rec {
9   pname = "greg";
10   version = "0.4.8";
12   disabled = !isPy3k;
14   src = fetchFromGitHub {
15     owner = "manolomartinez";
16     repo = pname;
17     tag = "v${version}";
18     sha256 = "sha256-o4+tXVJTgT52JyJOC+Glr2cvZjbTaZL8TIsmz+A4vE4=";
19   };
21   propagatedBuildInputs = [
22     setuptools
23     feedparser
24   ];
26   meta = with lib; {
27     homepage = "https://github.com/manolomartinez/greg";
28     description = "Command-line podcast aggregator";
29     mainProgram = "greg";
30     license = licenses.gpl3;
31     maintainers = with maintainers; [ edwtjo ];
32   };