python3Packages.johnnycanencrypt: fix build with newer maturin

This commit is contained in:
Robert Scott 2021-11-15 21:42:56 +00:00
parent 2d8f84bb56
commit f0358795ff

View file

@ -13,6 +13,7 @@
, pytestCheckHook
, pythonOlder
, PCSC
, libiconv
}:
buildPythonPackage rec {
@ -55,7 +56,10 @@ buildPythonPackage rec {
buildInputs = [
pcsclite
nettle
] ++ lib.optionals stdenv.isDarwin [ PCSC ];
] ++ lib.optionals stdenv.isDarwin [
PCSC
libiconv
];
# Needed b/c need to check AFTER python wheel is installed (using Rust Build, not buildPythonPackage)
doCheck = false;
@ -70,6 +74,8 @@ buildPythonPackage rec {
# for compatibility with maturin 0.9.0.
postPatch = ''
sed '/project-url = /d' -i Cargo.toml
substituteInPlace pyproject.toml \
--replace 'manylinux = "off"' 'skip-auditwheel = true'
'';
preCheck = ''