start on botamusiqe

This commit is contained in:
Daniel Løvbrøtte Olsen 2020-04-11 22:45:57 +02:00
parent 5652c2561c
commit 2ec78c4474
2 changed files with 34 additions and 0 deletions

View File

@ -26,5 +26,8 @@
photini = pkgs.libsForQt5.callPackage ./pkgs/photini { };
mangohud = pkgs.callPackage ./pkgs/MangoHUD { };
botamusique = pkgs.callPackage ./pkgs/botamusique {};
}

View File

@ -0,0 +1,31 @@
{ fetchFromGitHub, python3, python3Packages, ffmpeg, opusTools }:
let
pythonEnv = python3.withPackages (pythonPackages: with pythonPackages; [
opuslib
protobuf
flask
youtube-dl
magic
pillow
mutagen
requests
packaging
]);
in
python3Packages.buildPythonApplication rec {
pname = "botamusique";
version = "6.1.1";
src = fetchFromGitHub {
owner = "azlux";
repo = "botamusique";
rev = "${version}";
sha256 = "08gb11ldclg22wn3pa808vw742pvx8rv2w0frmllghsvh63w04ma";
};
buildInputs = [ ffmpeg opusTools ];
}