python3Packages.wcwidth: 0.2.6 -> 0.2.12

This commit is contained in:
Martin Weinelt 2023-12-03 00:03:25 +01:00
parent 9339aad6bb
commit 3d058563b5
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -4,17 +4,21 @@
buildPythonPackage rec {
pname = "wcwidth";
version = "0.2.6";
format = "setuptools";
version = "0.2.12";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-pSIHgKQE2+M1N4mHCXjkcs/kd3YfBu5VB3JW5QmxVtA=";
hash = "sha256-8BwQTv31eXG8t1bwVN1Y3exSBN0V+jHWUD6leUfZfAI=";
};
nativeCheckInputs = [ pytestCheckHook ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
# To prevent infinite recursion with pytest
doCheck = false;