Skip to content

Commit

Permalink
Merge pull request #48198 from teto/rfc-bibtex
Browse files Browse the repository at this point in the history
rfc-bibtex: init at 2.2.1
  • Loading branch information
srhb committed Oct 12, 2018
2 parents 1bcdf27 + 714c078 commit 32bcd72
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/rfc-bibtex/default.nix
@@ -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/;

This comment has been minimized.

Copy link
@JohnAZoidberg

JohnAZoidberg Oct 16, 2018

Member

There's an h missing.

description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts";
license = licenses.mit;
maintainers = with maintainers; [ teto ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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;
};
Expand Down

0 comments on commit 32bcd72

Please sign in to comment.