Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / apkit / default.nix
blob7e2c45ca8bc758934f153b3b29b72fa2a770ef38
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , numpy
5 , scipy
6 }:
8 buildPythonPackage {
9   pname = "apkit";
10   version = "unstable-2022-08-23";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "hwp";
15     repo = "apkit";
16     rev = "40561738c3f585c590c3f0584bf2e3354eefbd48";
17     hash = "sha256-/pwoEKB6BD+wWy7QwPwwzSxGn+TAOaMzduOXyuoXC8g=";
18   };
20   propagatedBuildInputs = [
21     numpy
22     scipy
23   ];
25   pythonImportsCheck = [ "apkit" ];
27   # This package has no tests
28   doCheck = false;
30   meta = with lib; {
31     description = "Audio processing toolkit";
32     homepage = "https://github.com/hwp/apkit";
33     license = licenses.mit;
34     maintainers = with maintainers; [ GaetanLepage ];
35   };