mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
c06921d6ae
Semi-automatic update. These checks were performed: - built on NixOS - found 0.7.0 with grep in /nix/store/snl5lx0r61cdy7q0csvwynbn6bbr6ynw-mopidy-moped-0.7.0 - found 0.7.0 in filename of file in /nix/store/snl5lx0r61cdy7q0csvwynbn6bbr6ynw-mopidy-moped-0.7.0 cc "@rickynils"
26 lines
688 B
Nix
26 lines
688 B
Nix
{ stdenv, fetchurl, pythonPackages, mopidy, glibcLocales }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-moped-${version}";
|
|
version = "0.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/martijnboland/moped/archive/v${version}.tar.gz";
|
|
sha256 = "1w71ing33hw2mlp8pw41w2sncp9lc3rgzn7nq6k90y6qk5q08xw6";
|
|
};
|
|
|
|
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 = [];
|
|
};
|
|
}
|