python3Packages.gevent: add setuptools to nativeBuildInputs

It is the build system used by gevent and was previously provided
through the buildPythonPackage builder.
This commit is contained in:
Martin Weinelt 2022-09-15 15:42:33 +02:00 committed by Vladimír Čunát
parent d4ba89200e
commit d9522aa4c5
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -5,6 +5,7 @@
, python
, libev
, greenlet
, setuptools
, zope_event
, zope_interface
, pythonOlder
@ -22,6 +23,10 @@ buildPythonPackage rec {
hash = "sha256-9ItkV4w2e5H6eTv46qr0mVy5PIvEWGDkc7+GgHCtCU4=";
};
nativeBuildInputs = [
setuptools
];
buildInputs = [
libev
];