nixpkgs/pkgs/applications/audio/greg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
636 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, pythonPackages }:
2017-10-12 04:40:46 +02:00
with pythonPackages; buildPythonApplication rec {
pname = "greg";
2022-04-05 23:14:50 +02:00
version = "0.4.8";
2017-10-12 04:40:46 +02:00
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "manolomartinez";
repo = pname;
2022-04-05 23:14:50 +02:00
rev = "refs/tags/v${version}";
sha256 = "sha256-o4+tXVJTgT52JyJOC+Glr2cvZjbTaZL8TIsmz+A4vE4=";
2017-10-12 04:40:46 +02:00
};
propagatedBuildInputs = [ setuptools feedparser ];
2017-10-12 04:40:46 +02:00
meta = with lib; {
2017-10-12 04:40:46 +02:00
homepage = "https://github.com/manolomartinez/greg";
description = "A command-line podcast aggregator";
mainProgram = "greg";
2017-10-12 04:40:46 +02:00
license = licenses.gpl3;
maintainers = with maintainers; [ edwtjo ];
};
}