Merge pull request #48198 from teto/rfc-bibtex
rfc-bibtex: init at 2.2.1
This commit is contained in:
commit
32bcd72bf2
20
pkgs/development/python-modules/rfc-bibtex/default.nix
Normal file
20
pkgs/development/python-modules/rfc-bibtex/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -22121,6 +22121,8 @@ with pkgs;
|
|||||||
|
|
||||||
retrofe = callPackage ../misc/emulators/retrofe { };
|
retrofe = callPackage ../misc/emulators/retrofe { };
|
||||||
|
|
||||||
|
rfc-bibtex = python3Packages.callPackage ../development/python-modules/rfc-bibtex { };
|
||||||
|
|
||||||
rpl = callPackage ../tools/text/rpl {
|
rpl = callPackage ../tools/text/rpl {
|
||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user