Unverified Commit 59ac94d3 authored by Malo Bourgon's avatar Malo Bourgon
Browse files

python312Packages.pysptk: unbreak on Darwin

Add setuptools as dependency to fix pkg_resources import error.
parent 880f3ada
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  cython,
  decorator,
@@ -8,6 +7,7 @@
  numpy,
  pythonOlder,
  scipy,
  setuptools,
  six,
}:

@@ -31,6 +31,7 @@ buildPythonPackage rec {
    decorator
    numpy
    scipy
    setuptools
    six
  ];

@@ -40,7 +41,6 @@ buildPythonPackage rec {
  pythonImportsCheck = [ "pysptk" ];

  meta = with lib; {
    broken = stdenv.hostPlatform.isDarwin;
    description = "Wrapper for Speech Signal Processing Toolkit (SPTK)";
    homepage = "https://pysptk.readthedocs.io/";
    license = licenses.mit;