Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 521 B view raw
1{ stdenv, buildPythonApplication, fetchPypi, isPy3k }: 2 3buildPythonApplication rec { 4 pname = "rfc-bibtex"; 5 version = "0.2.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1p8xjgq4rig1jgqy5jqh34mbifxgxsyyxh8sizwz2wyixf8by8lq"; 10 }; 11 12 disabled = !isPy3k; 13 14 meta = with stdenv.lib; { 15 homepage = ttps://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}