linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-bidi / default.nix
blob1a4a5d5b77cce2d77719928d3f613e103631f72a
1 { lib, buildPythonPackage, fetchPypi, six }:
3 buildPythonPackage rec {
4   pname = "python-bidi";
5   version = "0.4.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "U0f3HoKz6Zdtxlfwne0r/jm6jWd3yoGlssVsMBIcSW4=";
10   };
12   propagatedBuildInputs = [ six ];
14   meta = with lib; {
15     homepage = "https://github.com/MeirKriheli/python-bidi";
16     description = "Pure python implementation of the BiDi layout algorithm";
17     platforms = platforms.unix;
18     maintainers = with maintainers; [ freezeboy ];
19   };