nixpkgs/pkgs/development/python-modules/mistune/default.nix

25 lines
483 B
Nix
Raw Normal View History

2017-10-23 12:54:17 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "mistune";
2017-12-30 11:24:42 +00:00
version = "0.8.3";
2017-10-23 12:54:17 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 11:24:42 +00:00
sha256 = "bc10c33bfdcaa4e749b779f62f60d6e12f8215c46a292d05e486b869ae306619";
2017-10-23 12:54:17 +00:00
};
buildInputs = [ nose ];
meta = with lib; {
description = "The fastest markdown parser in pure Python";
homepage = https://github.com/lepture/mistune;
license = licenses.bsd3;
};
}