nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pubs: fix test broken by PyYAML 5.1

+12 -5
+12 -5
pkgs/tools/misc/pubs/default.nix
··· 11 11 sha256 = "16zwdqfbmlla6906g3a57a4nj8wnl11fq78r20qms717bzv211j0"; 12 12 }; 13 13 14 - # Fix for bibtexparser 1.1.0 15 - patches = fetchpatch { 16 - url = https://github.com/pubs/pubs/pull/185/commits/e58ae98b93b8364a07fd5f5f452ba88ad332c948.patch; 17 - sha256 = "1n7zrk119v395jj8wqg8wlymc9l9pq3v752yy3kam9kflc0aashp"; 18 - }; 14 + patches = [ 15 + # Fix for bibtexparser 1.1.0 16 + (fetchpatch { 17 + url = https://github.com/pubs/pubs/pull/185/commits/e58ae98b93b8364a07fd5f5f452ba88ad332c948.patch; 18 + sha256 = "1n7zrk119v395jj8wqg8wlymc9l9pq3v752yy3kam9kflc0aashp"; 19 + }) 20 + # Fix test broken by PyYAML 5.1 21 + (fetchpatch { 22 + url = https://github.com/pubs/pubs/pull/194/commits/c3cb713ae76528eeeaaeb948fe319a76ab3934d8.patch; 23 + sha256 = "05as418m7wzs65839bb91b2jrs8l68z8ldcjcd9cn4b9fcgsf3rk"; 24 + }) 25 + ]; 19 26 20 27 propagatedBuildInputs = with python3Packages; [ 21 28 argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six beautifulsoup4