Merge pull request #203983 from r-ryantm/auto-update/python310Packages.pyphen

python310Packages.pyphen: 0.13.0 -> 0.13.2
This commit is contained in:
Fabian Affolter
2022-12-02 10:45:28 +01:00
committed by GitHub
@@ -3,16 +3,19 @@
, fetchPypi
, flit
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyphen";
version = "0.13.0";
version = "0.13.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Boc86//WWo/KfCDA49wDJlXH7o3g9VIgXK07V0JlwpM=";
hash = "sha256-hH9XoEOlhAjyRnCuAYT/bt+1/VcxdDIIIowCjdxRRDg=";
};
nativeBuildInputs = [
@@ -27,9 +30,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"ptpython"
];
meta = with lib; {
description = "Pure Python module to hyphenate text";
description = "Module to hyphenate text";
homepage = "https://github.com/Kozea/Pyphen";
changelog = "https://github.com/Kozea/Pyphen/releases/tag/${version}";
license = with licenses; [gpl2 lgpl21 mpl20];
maintainers = with maintainers; [ rvl ];
};