summary refs log tree commit diff
path: root/pkgs/applications/audio/friture/default.nix
blob: 483f873fbd56a199a04605402e645eda64b5340f (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
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:

let
  py = python3Packages;
in py.buildPythonApplication rec {
  pname = "friture";
  version = "0.36";

  src = fetchFromGitHub {
    owner = "tlecomte";
    repo = "friture";
    rev = "v${version}";
    sha256 = "1pz8v0qbzqq3ig9w33cp027s6c8rj316x5sy8pqs5nsiny9ddnk6";
  };

  # module imports scipy.misc.factorial, but it has been removed since scipy
  # 1.3.0; use scipy.special.factorial instead
  patches = [ ./factorial.patch ];

  nativeBuildInputs = (with py; [ numpy cython scipy ]) ++
    [ wrapQtAppsHook ];

  propagatedBuildInputs = with py; [
    sounddevice
    pyopengl
    docutils
    numpy
    pyqt5
    appdirs
    pyrr
  ];

  postFixup = ''
    wrapQtApp $out/bin/friture
    wrapQtApp $out/bin/.friture-wrapped
  '';

  meta = with lib; {
    description = "A real-time audio analyzer";
    homepage = http://friture.org/;
    license = licenses.gpl3;
    maintainers = [ maintainers.laikq ];
  };
}