This commit is contained in:
mjallen18
2025-12-11 17:41:05 -06:00
parent 82ecfba7db
commit 31202f8b0e
17 changed files with 71 additions and 67 deletions

View File

@@ -1,5 +1,5 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage {
python3Packages.buildPythonPackage rec {
pname = "pipewire-python";
version = "0.2.3";
format = "pyproject";
@@ -7,8 +7,8 @@ python3Packages.buildPythonPackage {
src = fetchFromGitHub {
owner = "pablodz";
repo = "pipewire_python";
rev = "master";
sha256 = "sha256-EmwEZeKFFEqLkVnBKmB1HDVPk0xAqG6Ztv7+gpl0B1Y=";
rev = "v${version}";
sha256 = "sha256-6UIu7vke40q+n91gU8YxwMV/tWjLT6iDmHCMVqnXdMY=";
};
buildInputs = with python3Packages; [ flit-core ];