3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/mistune/common.nix
Dmitry Bogatov b233405aac
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
2021-04-08 11:32:22 +02:00

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;
};
}