python3Packages.mistletoe: 1.0.1 -> 1.2.1

This commit is contained in:
Martin Weinelt
2023-09-27 15:33:46 +02:00
parent b7b97529d7
commit 1e12502e2b
@@ -1,20 +1,21 @@
{ lib
, fetchPypi
, buildPythonPackage
, parameterized
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "mistletoe";
version = "1.0.1";
version = "1.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-sfia+weaGxpULp7ywI3UUKB6K9k1wDyrIsMorXyk2Og=";
hash = "sha256-fQwas3RwR9Fp+fxLkl0cuj9cE+rwuQw2W3LkflnQCgI=";
};
pythonImportsCheck = [
@@ -22,6 +23,7 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
parameterized
pytestCheckHook
];