lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.johnnycanencrypt: fix build with newer maturin

+7 -1
+7 -1
pkgs/development/python-modules/johnnycanencrypt/default.nix
··· 13 13 , pytestCheckHook 14 14 , pythonOlder 15 15 , PCSC 16 + , libiconv 16 17 }: 17 18 18 19 buildPythonPackage rec { ··· 55 56 buildInputs = [ 56 57 pcsclite 57 58 nettle 58 - ] ++ lib.optionals stdenv.isDarwin [ PCSC ]; 59 + ] ++ lib.optionals stdenv.isDarwin [ 60 + PCSC 61 + libiconv 62 + ]; 59 63 60 64 # Needed b/c need to check AFTER python wheel is installed (using Rust Build, not buildPythonPackage) 61 65 doCheck = false; ··· 70 74 # for compatibility with maturin 0.9.0. 71 75 postPatch = '' 72 76 sed '/project-url = /d' -i Cargo.toml 77 + substituteInPlace pyproject.toml \ 78 + --replace 'manylinux = "off"' 'skip-auditwheel = true' 73 79 ''; 74 80 75 81 preCheck = ''