python3Packages.python-bidi: init at 0.4.2

This commit is contained in:
freezeboy 2020-11-19 00:34:32 +01:00 committed by Jonathan Ringer
parent b5a2e19005
commit caa738142f
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "python-bidi";
version = "0.4.2";
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 ];
};
}

View file

@ -5774,6 +5774,8 @@ in {
python-baseconv = callPackage ../development/python-modules/python-baseconv { };
python-bidi = callPackage ../development/python-modules/python-bidi { };
python-binance = callPackage ../development/python-modules/python-binance { };
python-constraint = callPackage ../development/python-modules/python-constraint { };