Unverified Commit 5b71e54f authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python312Packages.pysilero-vad: 1.0.0 -> 2.0.0

parent 73e9892e
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -17,23 +17,21 @@

buildPythonPackage rec {
  pname = "pysilero-vad";
  version = "1.0.0";
  version = "2.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "rhasspy";
    repo = "pysilero-vad";
    rev = "fc1e3f74e6282249c1fd67ab0f65832ad1ce9cc5";
    hash = "sha256-5jS2xZEtvzXO/ffZzseTTUHfE528W9FvKB0AKG6T62k=";
    rev = "refs/tags/v${version}";
    hash = "sha256-p0pPhQo/raZhlHettmoc7FwnlZH9n2NI4tYHvikJ8i4=";
  };

  nativeBuildInputs = [
    setuptools
  ];
  build-system = [ setuptools ];

  pythonRelaxDeps = [ "numpy" ];

  propagatedBuildInputs = [
  dependencies = [
    numpy
    onnxruntime
  ];