about summary refs log tree commit diff
path: root/pkgs/development/python-modules/apkit/default.nix
blob: 7e2c45ca8bc758934f153b3b29b72fa2a770ef38 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, scipy
}:

buildPythonPackage {
  pname = "apkit";
  version = "unstable-2022-08-23";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "hwp";
    repo = "apkit";
    rev = "40561738c3f585c590c3f0584bf2e3354eefbd48";
    hash = "sha256-/pwoEKB6BD+wWy7QwPwwzSxGn+TAOaMzduOXyuoXC8g=";
  };

  propagatedBuildInputs = [
    numpy
    scipy
  ];

  pythonImportsCheck = [ "apkit" ];

  # This package has no tests
  doCheck = false;

  meta = with lib; {
    description = "Audio processing toolkit";
    homepage = "https://github.com/hwp/apkit";
    license = licenses.mit;
    maintainers = with maintainers; [ GaetanLepage ];
  };
}