nixpkgs/pkgs/development/python-modules/rfc-bibtex/default.nix

21 lines
533 B
Nix
Raw Normal View History

{ stdenv, buildPythonApplication, fetchPypi, isPy3k }:
buildPythonApplication rec {
pname = "rfc-bibtex";
2019-10-24 08:47:47 +02:00
version = "0.3.2";
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:47 +02:00
sha256 = "60419a2043ef37ac2438f3eae7a3207d0a4cb2dd56ab21697f874a35ee52927f";
};
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 ];
};
}