diffoscope: 214 -> 215

Disable failing test on python3.10
main
Martin Weinelt 2 years ago committed by Jonathan Ringer
parent 1d1120aab0
commit ae784e7d3e
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 7
      pkgs/tools/misc/diffoscope/default.nix

@ -11,11 +11,11 @@
# Note: when upgrading this package, please run the list-missing-tools.sh script as described below!
python3Packages.buildPythonApplication rec {
pname = "diffoscope";
version = "214";
version = "215";
src = fetchurl {
url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2";
sha256 = "sha256-ap+U9b+pCfQ2UwqQDTx0mQ0nvXJsl4D89Q/Ecl7w+8c=";
sha256 = "sha256-OiAuR4uY9m6322d93JMFFQrXMLv6XD3D24j7K7BRl10=";
};
outputs = [ "out" "man" ];
@ -77,6 +77,9 @@ python3Packages.buildPythonApplication rec {
# fails because it fails to determine llvm version
"test_item3_deflate_llvm_bitcode"
# OSError: [Errno 84] Invalid or incomplete multibyte or wide character: b'/build/pytest-of-nixbld/pytest-0/\xf0(\x8c('
"test_non_unicode_filename"
# disable formatting tests because they can break on black updates
"test_code_is_black_clean"
] ++ lib.optionals stdenv.isDarwin [

Loading…
Cancel
Save