Unverified Commit 9e7d1ba2 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.pysilero-vad: 3.2.0 -> 3.3.0

parent ba292b67
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -5,7 +5,9 @@
  stdenv,

  # build-system
  setuptools,
  cmake,
  ninja,
  scikit-build-core,

  # tests
  pytestCheckHook,
@@ -13,17 +15,23 @@

buildPythonPackage (finalAttrs: {
  pname = "pysilero-vad";
  version = "3.2.0";
  version = "3.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "rhasspy";
    repo = "pysilero-vad";
    tag = "v${finalAttrs.version}";
    hash = "sha256-cqjuU5JtsL+Fp3m3uzz8flrJEyn+JDUMWsXU0Ioh87U=";
    hash = "sha256-S0PDtooVmy09i2fE40ZhaPIKfOTqXQS/rs7dwtm0+pQ=";
  };

  build-system = [ setuptools ];
  build-system = [
    cmake
    ninja
    scikit-build-core
  ];

  dontUseCmakeConfigure = true;

  nativeCheckInputs = [ pytestCheckHook ];