2020-11-21 19:51:51 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-bidi";
|
|
|
|
version = "0.4.2";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-11-21 19:51:51 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "U0f3HoKz6Zdtxlfwne0r/jm6jWd3yoGlssVsMBIcSW4=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/MeirKriheli/python-bidi";
|
|
|
|
description = "Pure python implementation of the BiDi layout algorithm";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
|
|
};
|
|
|
|
}
|