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

25 lines
609 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pythonPackages }:
2017-10-12 02:40:46 +00:00
with pythonPackages; buildPythonApplication rec {
pname = "greg";
version = "0.4.7";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "manolomartinez";
repo = pname;
rev = "v" + version;
sha256 = "0bdzgh2k1ppgcvqiasxwp3w89q44s4jgwjidlips3ixx1bzm822v";
};
propagatedBuildInputs = [ setuptools feedparser ];
2017-10-12 02:40:46 +00:00
meta = with lib; {
2017-10-12 02:40:46 +00:00
homepage = "https://github.com/manolomartinez/greg";
description = "A command-line podcast aggregator";
license = licenses.gpl3;
maintainers = with maintainers; [ edwtjo ];
};
}