26 lines
688 B
Nix
26 lines
688 B
Nix
{ stdenv, fetchurl, pythonPackages, mopidy, glibcLocales }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-moped-${version}";
|
|
version = "0.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/martijnboland/moped/archive/v${version}.tar.gz";
|
|
sha256 = "0xff8y1kc7rwwsd7ppgbvywf6i8lchjwbxjisfl1kmilwsb166yr";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
buildInputs = [ glibcLocales ];
|
|
propagatedBuildInputs = [ mopidy ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/martijnboland/moped;
|
|
description = "A web client for Mopidy";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.rickynils ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|