0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-09 20:16:16 +03:00

python3Packages.falcon: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-16 15:33:06 +02:00 committed by Frederik Rietdijk
parent faf6ac661d
commit a7854ae932

View file

@ -6,6 +6,7 @@
# build
, cython
, setuptools
# tests
, aiofiles
@ -38,7 +39,9 @@ buildPythonPackage rec {
hash = "sha256-Y6bD0GCXhqpvMV+/i1v59p2qWZ91f2ey7sPQrVALY54=";
};
nativeBuildInputs = lib.optionals (!isPyPy) [
nativeBuildInputs = [
setuptools
] ++ lib.optionals (!isPyPy) [
cython
];