python3Packages.pyopenssl: fix postPatch

Add `-i` so that `sed` writes its output to the file.
Previously, the `sed` command was a no-op.`
This commit is contained in:
Erik Arvstedt 2023-09-11 14:13:06 +02:00
parent 9a70b1e242
commit 9d79ac1125
No known key found for this signature in database
GPG Key ID: 33312B944DD97846

View File

@ -36,7 +36,7 @@ buildPythonPackage rec {
postPatch = ''
# remove cryptography pin
sed "/cryptography/ s/,<[0-9]*//g" setup.py
sed -i "/cryptography/ s/,<[0-9]*//g" setup.py
'';
propagatedBuildInputs = [