mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #182010 from desttinghim/mopidy-bandcamp
Add Mopidy-Bandcamp
This commit is contained in:
commit
f5d757293b
@ -3138,6 +3138,13 @@
|
||||
githubId = 1311761;
|
||||
name = "Didier J. Devroye";
|
||||
};
|
||||
desttinghim = {
|
||||
email = "opensource@louispearson.work";
|
||||
matrix = "@desttinghim:matrix.org";
|
||||
github = "desttinghim";
|
||||
githubId = 10042482;
|
||||
name = "Louis Pearson";
|
||||
};
|
||||
devhell = {
|
||||
email = ''"^"@regexmail.net'';
|
||||
github = "devhell";
|
||||
|
19
pkgs/applications/audio/mopidy/bandcamp.nix
Normal file
19
pkgs/applications/audio/mopidy/bandcamp.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ lib, python3Packages, mopidy }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "Mopidy-Bandcamp";
|
||||
version = "1.1.5";
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-wg9zcOKfZQRhpyA1Cu5wvdwKpmrlcr2m9mrqBHgUXAQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ mopidy pykka ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mopidy extension for playing music from bandcamp";
|
||||
homepage = "https://github.com/impliedchaos/mopidy-bandcamp";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ desttinghim ];
|
||||
};
|
||||
}
|
@ -7,6 +7,8 @@ lib.makeScope newScope (self: with self; {
|
||||
|
||||
mopidy = callPackage ./mopidy.nix { };
|
||||
|
||||
mopidy-bandcamp = callPackage ./bandcamp.nix { };
|
||||
|
||||
mopidy-iris = callPackage ./iris.nix { };
|
||||
|
||||
mopidy-jellyfin = callPackage ./jellyfin.nix { };
|
||||
|
@ -28886,6 +28886,7 @@ with pkgs;
|
||||
|
||||
inherit (mopidyPackages)
|
||||
mopidy
|
||||
mopidy-bandcamp
|
||||
mopidy-iris
|
||||
mopidy-jellyfin
|
||||
mopidy-local
|
||||
|
Loading…
Reference in New Issue
Block a user