merge
This commit is contained in:
21
packages/python/pipewire-python/default.nix
Normal file
21
packages/python/pipewire-python/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ python3Packages, fetchFromGitHub, ... }:
|
||||
python3Packages.buildPythonPackage {
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user