pypy3Packages.cryptography: fix build under pypy

This commit is contained in:
Sophie Tauchert
2023-06-26 23:17:57 +02:00
parent e98c302521
commit afecc9a625

View File

@@ -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 ]