pubs: init at 0.7.0

This commit is contained in:
Gabriel Ebner 2018-01-08 14:09:53 +01:00
parent 738e97fcca
commit 563f688059
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
name = "pubs-${version}";
version = "0.7.0";
src = fetchFromGitHub {
owner = "pubs";
repo = "pubs";
rev = "v${version}";
sha256 = "0n5wbjx9wqy6smfg625mhma739jyg7c92766biaiffp0a2bzr475";
};
propagatedBuildInputs = with python3Packages; [
dateutil configobj bibtexparser pyyaml requests beautifulsoup4
pyfakefs ddt
];
preCheck = ''
# API tests require networking
rm tests/test_apis.py
# pyfakefs works weirdly in the sandbox
export HOME=/
'';
meta = with stdenv.lib; {
description = "Command-line bibliography manager";
homepage = https://github.com/pubs/pubs;
license = licenses.lgpl3;
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}

View file

@ -4175,6 +4175,8 @@ with pkgs;
libXNVCtrl = linuxPackages.nvidia_x11.settings.libXNVCtrl;
};
pubs = callPackage ../tools/misc/pubs {};
pv = callPackage ../tools/misc/pv { };
pwgen = callPackage ../tools/security/pwgen { };