yubikey-manager: 5.7.2 -> 5.8.0 (#439813)

Diff: https://github.com/Yubico/yubikey-manager/compare/5.7.2...5.8.0

Changelog: https://github.com/Yubico/yubikey-manager/releases/tag/5.8.0

authored by Sandro and committed by GitHub 194fc7cb 231bf43f

+9 -10
+9 -10
pkgs/by-name/yu/yubikey-manager/package.nix
··· 9 9 10 10 python3Packages.buildPythonPackage rec { 11 11 pname = "yubikey-manager"; 12 - version = "5.7.2"; 12 + version = "5.8.0"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Yubico"; 17 17 repo = "yubikey-manager"; 18 18 tag = version; 19 - hash = "sha256-dgOi9gJ7jO3+EjZQjHfx+KDsBtj6b4JWR3Bp9xWM6FI="; 19 + hash = "sha256-Z3krdKP6hhhIxN7nl/k5r30jFVC0kZK9Z6Aqllp/KrA="; 20 20 }; 21 21 22 22 postPatch = '' 23 23 substituteInPlace "ykman/pcsc/__init__.py" \ 24 - --replace 'pkill' '${if stdenv.hostPlatform.isLinux then procps else "/usr"}/bin/pkill' 24 + --replace-fail 'pkill' '${if stdenv.hostPlatform.isLinux then procps else "/usr"}/bin/pkill' 25 25 ''; 26 26 27 - nativeBuildInputs = with python3Packages; [ 27 + nativeBuildInputs = [ 28 + installShellFiles 29 + ]; 30 + 31 + build-system = with python3Packages; [ 28 32 poetry-core 29 - installShellFiles 30 33 ]; 31 34 32 - propagatedBuildInputs = with python3Packages; [ 35 + dependencies = with python3Packages; [ 33 36 cryptography 34 37 pyscard 35 38 fido2 36 39 click 37 40 keyring 38 - ]; 39 - 40 - pythonRelaxDeps = [ 41 - "keyring" 42 41 ]; 43 42 44 43 postInstall = ''