depot/third_party/nixpkgs/pkgs/development/python-modules/python-bidi/default.nix
Default email a944afd061 Project import generated by Copybara.
GitOrigin-RevId: 2247d824fe07f16325596acc7faa286502faffd1
2020-11-21 20:51:51 +01:00

20 lines
517 B
Nix

{ 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 ];
};
}