2015-09-26 19:01:08 +01:00
|
|
|
{ fetchFromGitHub, stdenv, pythonPackages, gtk3, gobjectIntrospection, libnotify
|
|
|
|
, gst_all_1, wrapGAppsHook }:
|
2015-04-22 03:15:13 +01:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2016-01-27 16:24:23 +00:00
|
|
|
pname = "pithos";
|
|
|
|
version = "1.1.2";
|
|
|
|
name = "${pname}-${version}";
|
2015-04-22 03:15:13 +01:00
|
|
|
|
2015-09-26 19:20:54 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
2015-09-23 13:00:26 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-01-27 16:24:23 +00:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2015-09-23 13:00:26 +01:00
|
|
|
rev = version;
|
2016-01-27 16:24:23 +00:00
|
|
|
sha256 = "0zk9clfawsnwmgjbk7y5d526ksxd1pkh09ln6sb06v4ygaiifcxp";
|
2015-04-22 03:15:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "/usr/share" "$out/share"
|
|
|
|
'';
|
|
|
|
|
2015-09-26 19:01:08 +01:00
|
|
|
buildInputs = [ wrapGAppsHook ];
|
|
|
|
|
2015-09-23 13:00:26 +01:00
|
|
|
propagatedBuildInputs =
|
|
|
|
[ gtk3 gobjectIntrospection libnotify ] ++
|
|
|
|
(with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad ]) ++
|
|
|
|
(with pythonPackages; [ pygobject3 pylast ]);
|
2015-04-22 03:15:13 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-09-23 13:00:26 +01:00
|
|
|
description = "Pandora Internet Radio player for GNOME";
|
2015-09-26 18:58:01 +01:00
|
|
|
homepage = https://pithos.github.io/;
|
2015-04-22 03:15:13 +01:00
|
|
|
license = licenses.gpl3;
|
2015-09-26 18:56:54 +01:00
|
|
|
maintainers = with maintainers; [ obadz jgeerds ];
|
2015-04-22 03:15:13 +01:00
|
|
|
};
|
|
|
|
}
|