My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-bidi/default.nix

20 lines
517 B

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