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

24 lines
453 B
Nix
Raw Normal View History

2017-10-23 14:54:17 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "mistune";
2018-11-04 11:35:06 +01:00
version = "0.8.4";
2017-10-23 14:54:17 +02:00
src = fetchPypi {
inherit pname version;
2018-11-04 11:35:06 +01:00
sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e";
2017-10-23 14:54:17 +02:00
};
buildInputs = [ nose ];
meta = with lib; {
description = "The fastest markdown parser in pure Python";
homepage = "https://github.com/lepture/mistune";
2017-10-23 14:54:17 +02:00
license = licenses.bsd3;
};
}