1{ lib, buildPythonApplication, fetchPypi, isPy3k }: 2 3buildPythonApplication rec { 4 pname = "rfc-bibtex"; 5 version = "0.3.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "60419a2043ef37ac2438f3eae7a3207d0a4cb2dd56ab21697f874a35ee52927f"; 10 }; 11 12 disabled = !isPy3k; 13 14 meta = with lib; { 15 homepage = "https://github.com/iluxonchik/rfc-bibtex/"; 16 description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ teto ]; 19 }; 20}