summary refs log tree commit diff
path: root/pkgs/tools/text/m2r/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/m2r/default.nix')
-rw-r--r--pkgs/tools/text/m2r/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/tools/text/m2r/default.nix b/pkgs/tools/text/m2r/default.nix
deleted file mode 100644
index f6dda712d0b..00000000000
--- a/pkgs/tools/text/m2r/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib
-, buildPythonApplication
-, fetchFromGitHub
-, docutils
-, mistune
-, pygments
-}:
-
-buildPythonApplication rec {
-  pname = "m2r";
-  version = "0.2.1";
-
-  src = fetchFromGitHub {
-    owner = "miyakogi";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-JNLPEXMoiISh4RnKP+Afj9/PJp9Lrx9UYHsfuGAL7uI=";
-  };
-
-  buildInputs = [
-    docutils
-    mistune
-    pygments
-  ];
-
-  meta = with lib; {
-    homepage = "https://github.com/miyakogi/m2r";
-    description = "Markdown-to-RestructuredText converter";
-    license = licenses.mit;
-    maintainers = with maintainers; [ AndersonTorres ];
-  };
-}