2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchFromGitHub, pythonPackages }:
|
2017-10-11 19:40:46 -07:00
|
|
|
|
|
|
|
with pythonPackages; buildPythonApplication rec {
|
|
|
|
pname = "greg";
|
|
|
|
version = "0.4.7";
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "manolomartinez";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v" + version;
|
|
|
|
sha256 = "0bdzgh2k1ppgcvqiasxwp3w89q44s4jgwjidlips3ixx1bzm822v";
|
|
|
|
};
|
|
|
|
|
2020-06-25 13:58:51 -07:00
|
|
|
propagatedBuildInputs = [ setuptools feedparser ];
|
2017-10-11 19:40:46 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-10-11 19:40:46 -07:00
|
|
|
homepage = "https://github.com/manolomartinez/greg";
|
|
|
|
description = "A command-line podcast aggregator";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}
|