forked from mirrors/nixpkgs
b233405aac
This version is required for md2gemini program and is incompatible with mistune=0.8.4
19 lines
391 B
Nix
19 lines
391 B
Nix
{ 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;
|
|
};
|
|
}
|