1{ lib, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "python-bidi"; 5 version = "0.4.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "U0f3HoKz6Zdtxlfwne0r/jm6jWd3yoGlssVsMBIcSW4="; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 meta = with lib; { 15 homepage = "https://github.com/MeirKriheli/python-bidi"; 16 description = "Pure python implementation of the BiDi layout algorithm"; 17 platforms = platforms.unix; 18 maintainers = with maintainers; [ freezeboy ]; 19 }; 20}