python3Packages.linkify-it-py: 2.0.0 -> 2.0.2

This commit is contained in:
Martin Weinelt
2023-09-27 15:33:44 +02:00
parent 5822c0e875
commit 88fbe41472
@@ -4,12 +4,13 @@
, pythonOlder
, pytestCheckHook
, uc-micro-py
, setuptools
}:
buildPythonPackage rec {
pname = "linkify-it-py";
version = "2.0.0";
format = "setuptools";
version = "2.0.2";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -17,13 +18,24 @@ buildPythonPackage rec {
owner = "tsutsu3";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-3bgkhIC6tHl5zieiyllvqFCKwLms55m8MGt1xGhQ4Dk=";
hash = "sha256-e3k2RblqvzWSSIrJL6ib2dxFw7T5vXlN8DrCV1qEr6w=";
};
propagatedBuildInputs = [ uc-micro-py ];
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "linkify_it" ];
propagatedBuildInputs = [
uc-micro-py
];
pythonImportsCheck = [
"linkify_it"
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Links recognition library with full unicode support";