python311Packages.pycontrol4: use pyproject

This commit is contained in:
Robert Schütz 2023-11-25 11:46:30 -08:00
parent 8b44dca9e6
commit 8ce8a58d8f

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, aiohttp
, xmltodict
, python-socketio
@ -14,7 +15,7 @@ buildPythonPackage rec {
disabled = pythonOlder "3.6";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "lawtancool";
@ -28,6 +29,10 @@ buildPythonPackage rec {
--replace "python-socketio>=4,<5" "python-socketio>=4"
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
xmltodict