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
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
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;
};
}

View File

@ -11875,23 +11875,7 @@ in {
};
};
mistune = buildPythonPackage rec {
version = "0.7.1";
name = "mistune-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/m/mistune/${name}.tar.gz";
sha256 = "6076dedf768348927d991f4371e5a799c6a0158b16091df08ee85ee231d929a7";
};
buildInputs = with self; [nose];
meta = {
description = "The fastest markdown parser in pure Python";
homepage = https://github.com/lepture/mistune;
license = licenses.bsd3;
};
};
mistune = callPackage ../development/python-modules/mistune { };
brotlipy = buildPythonPackage rec {
name = "brotlipy-${version}";