10 buildPythonPackage rec {
11 pname = "arabic-reshaper";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "python-arabic-reshaper";
21 hash = "sha256-ucSC5aTvpnlAVQcT0afVecnoN3hIZKtzUhEQ6Qg0jQM=";
24 optional-dependencies = {
25 with-fonttools = [ fonttools ];
28 nativeCheckInputs = [ pytestCheckHook ];
30 pythonImportsCheck = [ "arabic_reshaper" ];
33 description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic";
34 homepage = "https://github.com/mpcabd/python-arabic-reshaper";
35 changelog = "https://github.com/mpcabd/python-arabic-reshaper/releases/tag/v${version}";
36 license = with licenses; [ mit ];
37 maintainers = with maintainers; [ freezeboy ];