mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
20 lines
574 B
Nix
20 lines
574 B
Nix
{ lib, python3Packages, fetchPypi, mopidy }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "Mopidy-Bandcamp";
|
|
version = "1.1.5";
|
|
src = 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 ];
|
|
};
|
|
}
|