nixpkgs/pkgs/applications/audio/mopidy/muse.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
622 B
Nix
Raw Normal View History

{ lib, pythonPackages, fetchPypi, mopidy }:
2021-12-24 21:17:04 +01:00
pythonPackages.buildPythonApplication rec {
pname = "mopidy-muse";
2024-02-21 12:18:25 +01:00
version = "0.0.33";
2021-12-24 21:17:04 +01:00
src = fetchPypi {
2021-12-24 21:17:04 +01:00
inherit version;
pname = "Mopidy-Muse";
hash = "sha256-CEPAPWtMrD+HljyqBB6EAyGVeOjzkvVoEywlE4XEJGs=";
2021-12-24 21:17:04 +01:00
};
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 = [ ];
2021-12-24 21:17:04 +01:00
};
}