Merge pull request #95899 from guillaumecherel/upgrade-pubs-v0.8.3

gstqt5
Gabriel Ebner 2020-08-21 18:55:47 +02:00 committed by GitHub
commit 57dbe33637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 16 deletions

View File

@ -2,34 +2,29 @@
python3Packages.buildPythonApplication rec {
pname = "pubs";
version = "0.8.2";
version = "0.8.3";
src = fetchFromGitHub {
owner = "pubs";
repo = "pubs";
rev = "v${version}";
sha256 = "16zwdqfbmlla6906g3a57a4nj8wnl11fq78r20qms717bzv211j0";
sha256 = "0npgsyxj7kby5laznk5ilkrychs3i68y57gphwk48w8k9fvnl3zc";
};
patches = [
# Fix for bibtexparser 1.1.0
(fetchpatch {
url = "https://github.com/pubs/pubs/pull/185/commits/e58ae98b93b8364a07fd5f5f452ba88ad332c948.patch";
sha256 = "1n7zrk119v395jj8wqg8wlymc9l9pq3v752yy3kam9kflc0aashp";
})
# Fix test broken by PyYAML 5.1
(fetchpatch {
url = "https://github.com/pubs/pubs/pull/194/commits/c3cb713ae76528eeeaaeb948fe319a76ab3934d8.patch";
sha256 = "05as418m7wzs65839bb91b2jrs8l68z8ldcjcd9cn4b9fcgsf3rk";
})
];
propagatedBuildInputs = with python3Packages; [
argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six beautifulsoup4
argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six
beautifulsoup4
];
checkInputs = with python3Packages; [ pyfakefs mock ddt ];
# Disabling git tests because they expect git to be preconfigured
# with the user's details. See
# https://github.com/NixOS/nixpkgs/issues/94663
preCheck = ''
rm tests/test_git.py
'';
meta = with stdenv.lib; {
description = "Command-line bibliography manager";
homepage = "https://github.com/pubs/pubs";