Unverified Commit 4f6df22d authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.rtmixer: convert to pyproject, fix cross (#351972)

parents b0328f10 c835e6d5
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  fetchFromGitHub,
  buildPythonPackage,
  isPy27,
  setuptools,
  cython,
  portaudio,
  cffi,
@@ -13,7 +14,7 @@
buildPythonPackage rec {
  pname = "rtmixer";
  version = "0.1.7";
  format = "setuptools";
  pyproject = true;
  disabled = isPy27;

  src = fetchFromGitHub {
@@ -24,10 +25,16 @@ buildPythonPackage rec {
    fetchSubmodules = true;
  };

  build-system = [ setuptools ];

  buildInputs = [ portaudio ];
  nativeBuildInputs = [ cython ];

  propagatedBuildInputs = [
  nativeBuildInputs = [
    cython
    cffi
  ];

  dependencies = [
    cffi
    pa-ringbuffer
    sounddevice