3
0
Fork 0
forked from mirrors/nixpkgs

pypy3.pkgs.cryptography: fix build

setuptools-rust was accidentally added to the wrong list.
This commit is contained in:
Frederik Rietdijk 2021-03-13 15:40:14 +01:00 committed by Frederik Rietdijk
parent ddd71dd0c9
commit 2edf46ca6a

View file

@ -42,6 +42,7 @@ buildPythonPackage rec {
nativeBuildInputs = lib.optionals (!isPyPy) [
cffi
] ++ [
rustPlatform.cargoSetupHook
setuptools-rust
] ++ (with rustPlatform; [ rust.cargo rust.rustc ]);