mistune: 0.7.1 -> 0.7.4, own file

This commit is contained in:
Robin Gloster
2017-10-23 14:54:17 +02:00
parent b10a98cee7
commit 62ca1c2dab
2 changed files with 25 additions and 17 deletions

View File

@@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "mistune";
version = "0.7.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0byj9jg9ly7karf5sb1aqcw7avaim9sxl8ws7yw7p1fibjgsy5w5";
};
buildInputs = [ nose ];
meta = with lib; {
description = "The fastest markdown parser in pure Python";
homepage = https://github.com/lepture/mistune;
license = licenses.bsd3;
};
}