Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
29 lines
622 B
Nix
29 lines
622 B
Nix
{ lib, pythonPackages, fetchPypi, mopidy }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy-muse";
|
|
version = "0.0.33";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Mopidy-Muse";
|
|
hash = "sha256-CEPAPWtMrD+HljyqBB6EAyGVeOjzkvVoEywlE4XEJGs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
pythonPackages.pykka
|
|
];
|
|
|
|
pythonImportsCheck = [ "mopidy_muse" ];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Mopidy web client with Snapcast support";
|
|
homepage = "https://github.com/cristianpb/muse";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|