linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / rfc-bibtex / default.nix
blobb9b7cdb76c4f3339d09a6e093e51248be9e51f5d
1 { lib, buildPythonApplication, fetchPypi, isPy3k }:
3 buildPythonApplication rec {
4   pname = "rfc-bibtex";
5   version = "0.3.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "60419a2043ef37ac2438f3eae7a3207d0a4cb2dd56ab21697f874a35ee52927f";
10   };
12   disabled = !isPy3k;
14   meta = with lib; {
15     homepage = "https://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   };