about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-bidi/default.nix
blob: ea180de55d56e6b5843a5310467a8719d8be8840 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi, six }:

buildPythonPackage rec {
  pname = "python-bidi";
  version = "0.4.2";
  format = "setuptools";

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