about summary refs log tree commit diff
path: root/pkgs/tools/audio/shaq/default.nix
blob: a7072ece0ff5e408e9c2107a7feefdd4abe2ab10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ lib
, python3
, fetchFromGitHub
, ffmpeg
}:

python3.pkgs.buildPythonApplication rec {
  pname = "shaq";
  version = "0.0.1";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "woodruffw";
    repo = "shaq";
    rev = "v${version}";
    hash = "sha256-RF606Aeskqbx94H5ivd+RJ+Hk0iYsds/PUY8TZqirs4=";
  };

  nativeBuildInputs = [
    python3.pkgs.flit-core
  ];

  propagatedBuildInputs = with python3.pkgs; [
    pyaudio
    pydub
    rich
    shazamio
  ];

  passthru.optional-dependencies = with python3.pkgs; {
    dev = [
      build
      shaq
    ];
    lint = [
      black
      mypy
      ruff
    ];
    test = [
      pretend
      pytest
      pytest-cov
    ];
  };

  pythonImportsCheck = [ "shaq" ];

  makeWrapperArgs = [
    "--prefix"
    "PATH"
    ":"
    (lib.makeBinPath [ ffmpeg ])
  ];

  meta = with lib; {
    description = "A CLI client for Shazam";
    homepage = "https://github.com/woodruffw/shaq";
    changelog = "https://github.com/woodruffw/shaq/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda mig4ng ];
    mainProgram = "shaq";
  };
}