pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / apkit / default.nix
blobab07a00ddb46acff1e266c4c1db858df9e650dac
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   numpy,
6   scipy,
7 }:
9 buildPythonPackage {
10   pname = "apkit";
11   version = "unstable-2022-08-23";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "hwp";
16     repo = "apkit";
17     rev = "40561738c3f585c590c3f0584bf2e3354eefbd48";
18     hash = "sha256-/pwoEKB6BD+wWy7QwPwwzSxGn+TAOaMzduOXyuoXC8g=";
19   };
21   propagatedBuildInputs = [
22     numpy
23     scipy
24   ];
26   pythonImportsCheck = [ "apkit" ];
28   # This package has no tests
29   doCheck = false;
31   meta = with lib; {
32     description = "Audio processing toolkit";
33     homepage = "https://github.com/hwp/apkit";
34     license = licenses.mit;
35     maintainers = with maintainers; [ GaetanLepage ];
36   };