mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
30 lines
682 B
Nix
30 lines
682 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchFromGitHub
|
|
, mock
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "arxiv2bib";
|
|
version = "1.0.8";
|
|
|
|
# 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";
|
|
homepage = "http://nathangrigg.github.io/arxiv2bib/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.nico202 ];
|
|
};
|
|
}
|