pypy3Packages.cryptography: fix build under pypy

This commit is contained in:
Sophie Tauchert
2023-06-27 00:10:05 +02:00
parent e98c302521
commit afecc9a625
@@ -52,14 +52,14 @@ buildPythonPackage rec {
cargoRoot = "src/rust";
nativeBuildInputs = lib.optionals (!isPyPy) [
cffi
pkg-config
] ++ [
nativeBuildInputs = [
rustPlatform.cargoSetupHook
setuptools-rust
cargo
rustc
pkg-config
] ++ lib.optionals (!isPyPy) [
cffi
];
buildInputs = [ openssl ]