depot/third_party/nixpkgs/pkgs/development/python-modules/arxiv2bib/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

31 lines
738 B
Nix

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