mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
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 = [ ];
|
|
};
|
|
}
|