mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python311Packages.pycontrol4: use pyproject
This commit is contained in:
parent
8b44dca9e6
commit
8ce8a58d8f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user