mistune: 0.7.1 -> 0.7.4, own file
This commit is contained in:
parent
b10a98cee7
commit
62ca1c2dab
24
pkgs/development/python-modules/mistune/default.nix
Normal file
24
pkgs/development/python-modules/mistune/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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}";
|
||||
|
Loading…
Reference in New Issue
Block a user