Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
772 B
Nix
40 lines
772 B
Nix
{
|
|
lib,
|
|
pythonPackages,
|
|
fetchPypi,
|
|
mopidy,
|
|
glibcLocales,
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy-moped";
|
|
version = "0.7.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Mopidy-Moped";
|
|
sha256 = "15461174037d87af93dd59a236d4275c5abf71cea0670ffff24a7d0399a8a2e4";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
buildInputs = [ glibcLocales ];
|
|
|
|
build-system = [ pythonPackages.setuptools ];
|
|
|
|
dependencies = [ mopidy ];
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mopidy_moped" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/martijnboland/moped";
|
|
description = "Web client for Mopidy";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|