Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 six, 6}: 7 8buildPythonPackage rec { 9 pname = "python-bidi"; 10 version = "0.4.2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "U0f3HoKz6Zdtxlfwne0r/jm6jWd3yoGlssVsMBIcSW4="; 16 }; 17 18 propagatedBuildInputs = [ six ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/MeirKriheli/python-bidi"; 22 description = "Pure python implementation of the BiDi layout algorithm"; 23 mainProgram = "pybidi"; 24 platforms = platforms.unix; 25 maintainers = with maintainers; [ freezeboy ]; 26 }; 27}