2021-01-25 09:26:54 +01:00
|
|
|
{ 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
|
|
|
};
|
|
|
|
|
2020-06-25 22:58:51 +02:00
|
|
|
propagatedBuildInputs = [ setuptools feedparser ];
|
2017-10-12 04:40:46 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-10-12 04:40:46 +02:00
|
|
|
homepage = "https://github.com/manolomartinez/greg";
|
|
|
|
description = "A command-line podcast aggregator";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "greg";
|
2017-10-12 04:40:46 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}
|