dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / by-name / rf / rfc-bibtex / package.nix
blob38254cae5c6a6748f457a69848ceb76aeb35769d
2   lib,
3   fetchFromGitHub,
4   python3,
5 }:
7 with python3.pkgs;
8 buildPythonApplication rec {
9   pname = "rfc-bibtex";
10   version = "0.3.2";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "iluxonchik";
15     repo = pname;
16     tag = version;
17     hash = "sha256-bPCNQqiG50vWVFA6J2kyxftwsXunHTNBdSkoIRYkb0s=";
18   };
20   nativeCheckInputs = [
21     pytestCheckHook
22     vcrpy
23   ];
25   pythonImportsCheck = [
26     "rfc_bibtex"
27   ];
29   meta = with lib; {
30     homepage = "https://github.com/iluxonchik/rfc-bibtex/";
31     description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts";
32     license = licenses.mit;
33     maintainers = with maintainers; [ teto ];
34     mainProgram = "rfcbibtex";
35   };