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
No known key found for this signature in database
GPG key ID: 52701DE5F5F51125

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 ]