python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / typesetting / rfc-bibtex / default.nix
blobde38b4cd29c26521f242d9a5359adbb6a2024274
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 with python3.pkgs; buildPythonApplication rec {
7   pname = "rfc-bibtex";
8   version = "0.3.2";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "iluxonchik";
13     repo = pname;
14     rev = "refs/tags/${version}";
15     hash = "sha256-bPCNQqiG50vWVFA6J2kyxftwsXunHTNBdSkoIRYkb0s=";
16   };
18   checkInputs = [
19     pytestCheckHook
20     vcrpy
21   ];
23   pythonImportsCheck = [
24     "rfc_bibtex"
25   ];
27   meta = with lib; {
28     homepage = "https://github.com/iluxonchik/rfc-bibtex/";
29     description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts";
30     license = licenses.mit;
31     maintainers = with maintainers; [ teto ];
32   };