python3.pkgs.mistune: write derivation for mistune=2.0.0a4
This version is required for md2gemini program and is incompatible with mistune=0.8.4
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, nose, version, sha256 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
inherit version;
|
||||
pname = "mistune";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version sha256;
|
||||
};
|
||||
|
||||
buildInputs = [ nose ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The fastest markdown parser in pure Python";
|
||||
homepage = "https://github.com/lepture/mistune";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user