summary refs log tree commit diff
path: root/pkgs/development/python-modules/mistune/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/mistune/common.nix')
-rw-r--r--pkgs/development/python-modules/mistune/common.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/mistune/common.nix b/pkgs/development/python-modules/mistune/common.nix
deleted file mode 100644
index 24508372d9a..00000000000
--- a/pkgs/development/python-modules/mistune/common.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, nose
-, version
-, sha256
-, format ? "setuptools"
-, extraMeta ? {}
-}:
-
-buildPythonPackage rec {
-  inherit version format;
-  pname = "mistune";
-
-  src = fetchPypi {
-    inherit pname version sha256;
-  };
-
-  buildInputs = [ nose ];
-  pythonImportsCheck = [ "mistune" ];
-
-  meta = with lib; {
-    description = "The fastest markdown parser in pure Python";
-    homepage = "https://github.com/lepture/mistune";
-    license = licenses.bsd3;
-  } // extraMeta;
-}