python3Packages.arabic-reshaper: 3.0.0 -> 3.0.1

https://github.com/mpcabd/python-arabic-reshaper/releases/tag/v3.0.1
This commit is contained in:
Martin Weinelt
2026-05-27 23:39:18 +02:00
parent 079af5baf5
commit 083c286dd5
@@ -3,34 +3,41 @@
buildPythonPackage,
fetchFromGitHub,
fonttools,
hatchling,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "arabic-reshaper";
version = "3.0.0";
format = "setuptools";
version = "3.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mpcabd";
repo = "python-arabic-reshaper";
tag = "v${version}";
hash = "sha256-ucSC5aTvpnlAVQcT0afVecnoN3hIZKtzUhEQ6Qg0jQM=";
tag = "v${finalAttrs.version}";
hash = "sha256-6i/YcYod341bg9tThZRwvaFRbtU/LxCeirq0yzmMuBI=";
};
build-system = [ hatchling ];
optional-dependencies = {
with-fonttools = [ fonttools ];
};
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "arabic_reshaper" ];
meta = {
description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic";
homepage = "https://github.com/mpcabd/python-arabic-reshaper";
changelog = "https://github.com/mpcabd/python-arabic-reshaper/releases/tag/v${version}";
changelog = "https://github.com/mpcabd/python-arabic-reshaper/releases/tag/${finalAttrs.src.tag}";
license = with lib.licenses; [ mit ];
maintainers = [ ];
};
}
})