python310Packages.mistune: 2.0.5 -> 3.0.1

Changelog: https://github.com/lepture/mistune/blob/v3.0.1/docs/changes.rst
This commit is contained in:
Robert Schütz 2023-07-27 23:54:40 -07:00
parent 4a31fc5740
commit 42601e6f1c

View File

@ -2,18 +2,21 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "mistune";
version = "2.0.5";
version = "3.0.1";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-AkYRPLJJLbh1xr5Wl0p8iTMzvybNkokchfYxUc7gnTQ=";
hash = "sha256-6RIRbBOqCUT53FMNs464j2p3CHqxKPSfhKSPTAXqFjw=";
};
nativeBuildInputs = [