1 { lib, fetchFromGitHub, python3Packages }:
3 python3Packages.buildPythonApplication rec {
7 src = fetchFromGitHub {
11 sha256 = "0npgsyxj7kby5laznk5ilkrychs3i68y57gphwk48w8k9fvnl3zc";
14 propagatedBuildInputs = with python3Packages; [
15 argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six
19 checkInputs = with python3Packages; [ pyfakefs mock ddt ];
21 # Disabling git tests because they expect git to be preconfigured
22 # with the user's details. See
23 # https://github.com/NixOS/nixpkgs/issues/94663
29 description = "Command-line bibliography manager";
30 homepage = "https://github.com/pubs/pubs";
31 license = licenses.lgpl3;
32 maintainers = with maintainers; [ gebner ];