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:
parent
faf6ac661d
commit
a7854ae932
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue