aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-bidi/default.nix
blob: 1a4a5d5b77cce2d77719928d3f613e103631f72a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ];
  };
}