Merge pull request #48198 from teto/rfc-bibtex

rfc-bibtex: init at 2.2.1
This commit is contained in:
Sarah Brofeldt 2018-10-12 10:07:10 +02:00 committed by GitHub
commit 32bcd72bf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, buildPythonApplication, fetchPypi, isPy3k }:
buildPythonApplication rec {
pname = "rfc-bibtex";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "1p8xjgq4rig1jgqy5jqh34mbifxgxsyyxh8sizwz2wyixf8by8lq";
};
disabled = !isPy3k;
meta = with stdenv.lib; {
homepage = ttps://github.com/iluxonchik/rfc-bibtex/;
description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts";
license = licenses.mit;
maintainers = with maintainers; [ teto ];
};
}

View file

@ -22121,6 +22121,8 @@ with pkgs;
retrofe = callPackage ../misc/emulators/retrofe { };
rfc-bibtex = python3Packages.callPackage ../development/python-modules/rfc-bibtex { };
rpl = callPackage ../tools/text/rpl {
pythonPackages = python3Packages;
};