python3Packages.usbrelay-py: migrate to pyproject (#542078)

This commit is contained in:
Yohann Boniface
2026-07-15 23:10:11 +00:00
committed by GitHub

View File

@@ -1,10 +1,16 @@
{ buildPythonPackage, usbrelay }:
{
buildPythonPackage,
setuptools,
usbrelay,
}:
buildPythonPackage {
format = "setuptools";
pname = "usbrelay_py";
pyproject = true;
inherit (usbrelay) version src;
build-system = [ setuptools ];
preConfigure = ''
cd usbrelay_py
'';