nixpkgs/pkgs/tools/misc/pubs/default.nix

33 lines
969 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, python3Packages }:
2018-01-08 14:09:53 +01:00
2019-01-08 17:08:12 +01:00
python3Packages.buildPythonApplication rec {
2018-04-06 18:01:59 +02:00
pname = "pubs";
2019-01-08 17:08:12 +01:00
version = "0.8.2";
2018-01-08 14:09:53 +01:00
src = fetchFromGitHub {
owner = "pubs";
repo = "pubs";
rev = "v${version}";
2019-01-08 17:08:12 +01:00
sha256 = "16zwdqfbmlla6906g3a57a4nj8wnl11fq78r20qms717bzv211j0";
2018-01-08 14:09:53 +01:00
};
# Fix for bibtexparser 1.1.0
patches = fetchpatch {
url = https://github.com/pubs/pubs/pull/185/commits/e58ae98b93b8364a07fd5f5f452ba88ad332c948.patch;
sha256 = "1n7zrk119v395jj8wqg8wlymc9l9pq3v752yy3kam9kflc0aashp";
};
2018-01-08 14:09:53 +01:00
propagatedBuildInputs = with python3Packages; [
2019-01-08 17:08:12 +01:00
argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six beautifulsoup4
2018-01-08 14:09:53 +01:00
];
2019-01-08 17:08:12 +01:00
checkInputs = with python3Packages; [ pyfakefs mock ddt ];
2018-01-08 14:09:53 +01:00
meta = with stdenv.lib; {
description = "Command-line bibliography manager";
homepage = https://github.com/pubs/pubs;
license = licenses.lgpl3;
maintainers = with maintainers; [ gebner ];
};
}