forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
|
, gst_all_1, glib-networking, gobject-introspection
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy";
|
|
version = "3.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
rev = "v${version}";
|
|
sha256 = "14m80z9spi2vhfs2bbff7ky80mr6bksl4550y17hwd7zpkid60za";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
buildInputs = with gst_all_1; [
|
|
glib-networking
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gobject-introspection
|
|
] ++ (with pythonPackages; [
|
|
gst-python
|
|
pygobject3
|
|
pykka
|
|
requests
|
|
setuptools
|
|
tornado
|
|
] ++ stdenv.lib.optional (!stdenv.isDarwin) dbus-python
|
|
);
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.mopidy.com/";
|
|
description = ''
|
|
An extensible music server that plays music from local disk, Spotify,
|
|
SoundCloud, Google Play Music, and more
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.fpletz ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|