Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
26 lines
633 B
Nix
26 lines
633 B
Nix
{ lib, pythonPackages, fetchPypi, mopidy, glibcLocales }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "Mopidy-Moped";
|
|
version = "0.7.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "15461174037d87af93dd59a236d4275c5abf71cea0670ffff24a7d0399a8a2e4";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
buildInputs = [ glibcLocales ];
|
|
propagatedBuildInputs = [ mopidy ];
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/martijnboland/moped";
|
|
description = "Web client for Mopidy";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|