mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
25 lines
610 B
Nix
25 lines
610 B
Nix
{ lib, fetchFromGitHub, pythonPackages }:
|
|
|
|
with pythonPackages; buildPythonApplication rec {
|
|
pname = "greg";
|
|
version = "0.4.8";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "manolomartinez";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-o4+tXVJTgT52JyJOC+Glr2cvZjbTaZL8TIsmz+A4vE4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools feedparser ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/manolomartinez/greg";
|
|
description = "A command-line podcast aggregator";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
};
|
|
}
|