My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/arxiv2bib/default.nix

27 lines
674 B

{ buildPythonPackage, python, lib, fetchFromGitHub
, mock
}:
buildPythonPackage rec {
pname = "arxiv2bib";
version = "1.0.8";
# Missing tests on Pypi
src = fetchFromGitHub {
owner = "nathangrigg";
repo = "arxiv2bib";
rev = version;
sha256 = "1kp2iyx20lpc9dv4qg5fgwf83a1wx6f7hj1ldqyncg0kn9xcrhbg";
};
checkInputs = [ mock ];
checkPhase = "${python.interpreter} -m unittest discover -s tests";
meta = with lib; {
description = "Get a BibTeX entry from an arXiv id number, using the arxiv.org API";
homepage = "http://nathangrigg.github.io/arxiv2bib/";
license = licenses.bsd3;
maintainers = [ maintainers.nico202 ];
};
}