acousticbrainz-client: init at 0.1 (#115780)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
13bfd70462
commit
142418d941
41
pkgs/tools/audio/acousticbrainz-client/default.nix
Normal file
41
pkgs/tools/audio/acousticbrainz-client/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib, fetchFromGitHub, python3Packages, essentia-extractor }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "acousticbrainz-client";
|
||||||
|
version = "0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "MTG";
|
||||||
|
repo = "acousticbrainz-client";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1g1nxh58939vysfxplrgdz366dlqnic05pkzbqh75m79brg4yrv1";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ essentia-extractor python3Packages.requests ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# The installer needs the streaming_extractor_music binary in the source directoy,
|
||||||
|
# so we provide a symlink to it.
|
||||||
|
ln -s ${essentia-extractor}/bin/streaming_extractor_music streaming_extractor_music
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# The installer includes a copy of the streaming_extractor_music binary (not a symlink),
|
||||||
|
# which we don't need, because the wrapper adds essentia-extractor/binary to PATH.
|
||||||
|
rm $out/bin/streaming_extractor_music
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Tests seem to be broken, but the tool works
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "abz" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A client to upload data to an AcousticBrainz server";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
homepage = "https://github.com/MTG/acousticbrainz-client";
|
||||||
|
# essentia-extractor is only available for those platforms
|
||||||
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
|
maintainers = with maintainers; [ eduardosm ];
|
||||||
|
};
|
||||||
|
}
|
@ -670,6 +670,8 @@ in
|
|||||||
|
|
||||||
acme-sh = callPackage ../tools/admin/acme.sh { };
|
acme-sh = callPackage ../tools/admin/acme.sh { };
|
||||||
|
|
||||||
|
acousticbrainz-client = callPackage ../tools/audio/acousticbrainz-client { };
|
||||||
|
|
||||||
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {
|
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {
|
||||||
ffmpeg = ffmpeg_2;
|
ffmpeg = ffmpeg_2;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user