nixpkgs/pkgs/development/python-modules/arxiv2bib/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

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 ];
};
}