This commit is contained in:
mjallen18
2025-07-29 16:41:04 -05:00
parent 7e35a27b2e
commit 04ef2a4b8c
10 changed files with 77 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage rec {
pname = "pipewire-python";
version = "0.2.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "pablodz";
repo = "pipewire_python";
rev = "master";
sha256 = "sha256-EmwEZeKFFEqLkVnBKmB1HDVPk0xAqG6Ztv7+gpl0B1Y=";
};
buildInputs = with python3Packages; [ flit-core ];
nativeBuildInputs = with python3Packages; [ build wheel ];
doCheck = false; # no tests in the PyPI tarball
}