mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pubs: init at 0.7.0
This commit is contained in:
parent
738e97fcca
commit
563f688059
34
pkgs/tools/misc/pubs/default.nix
Normal file
34
pkgs/tools/misc/pubs/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user