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
41 lines
783 B
Nix
41 lines
783 B
Nix
{
|
|
lib,
|
|
mopidy,
|
|
pythonPackages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy-local";
|
|
version = "3.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "mopidy_local";
|
|
hash = "sha256-y6btbGk5UiVan178x7d9jq5OTnKMbuliHv0aRxuZK3o=";
|
|
};
|
|
|
|
build-system = [
|
|
pythonPackages.setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
mopidy
|
|
pythonPackages.uritools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pythonPackages.pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "mopidy_local" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mopidy/mopidy-local";
|
|
description = "Mopidy extension for playing music from your local music archive";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ruuda ];
|
|
};
|
|
}
|