summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2018-10-12 10:07:10 +0200
committerGitHub <noreply@github.com>2018-10-12 10:07:10 +0200
commit32bcd72bf28a971c9063a9cdcc32effe49f49331 (patch)
treea1c0ad16b03f194ef6b6995a5b2056a2173d8b7a /pkgs/development/python-modules
parent1bcdf27c48cb730294136a5399a92d40cd3efef1 (diff)
parent714c0781c3bd9956b26becccc05d2f997afd4aa3 (diff)
downloadnixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.tar
nixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.tar.gz
nixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.tar.bz2
nixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.tar.lz
nixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.tar.xz
nixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.tar.zst
nixpkgs-32bcd72bf28a971c9063a9cdcc32effe49f49331.zip
Merge pull request #48198 from teto/rfc-bibtex
rfc-bibtex: init at 2.2.1
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/rfc-bibtex/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rfc-bibtex/default.nix b/pkgs/development/python-modules/rfc-bibtex/default.nix
new file mode 100644
index 00000000000..a1626d6b65c
--- /dev/null
+++ b/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/;
+    description = "Generate Bibtex entries for IETF RFCs and Internet-Drafts";
+    license = licenses.mit;
+    maintainers = with maintainers; [ teto ];
+  };
+}