diff options
| author | freezeboy <freezeboy@users.noreply.github.com> | 2020-11-19 00:34:32 +0100 |
|---|---|---|
| committer | Jonathan Ringer <jonringer@users.noreply.github.com> | 2020-11-18 20:50:00 -0800 |
| commit | caa738142fbbbebb7e801b65134fddf4064e52d2 (patch) | |
| tree | f5f8badca0c83cebc4a5b0045edf8dc524de5ce2 /pkgs/development/python-modules/python-bidi | |
| parent | b5a2e19005ac8202f031378ccb015100e632e436 (diff) | |
python3Packages.python-bidi: init at 0.4.2
Diffstat (limited to 'pkgs/development/python-modules/python-bidi')
| -rw-r--r-- | pkgs/development/python-modules/python-bidi/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-bidi/default.nix b/pkgs/development/python-modules/python-bidi/default.nix new file mode 100644 index 000000000000..1a4a5d5b77cc --- /dev/null +++ b/pkgs/development/python-modules/python-bidi/default.nix @@ -0,0 +1,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 ]; + }; +} |
