lol

python3Packages.python-bidi: init at 0.4.2

authored by

freezeboy and committed by
Jonathan Ringer
caa73814 b5a2e190

+22
+20
pkgs/development/python-modules/python-bidi/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, six }: 2 + 3 + buildPythonPackage rec { 4 + pname = "python-bidi"; 5 + version = "0.4.2"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "U0f3HoKz6Zdtxlfwne0r/jm6jWd3yoGlssVsMBIcSW4="; 10 + }; 11 + 12 + propagatedBuildInputs = [ six ]; 13 + 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 + }; 20 + }
+2
pkgs/top-level/python-packages.nix
··· 5774 5774 5775 5775 python-baseconv = callPackage ../development/python-modules/python-baseconv { }; 5776 5776 5777 + python-bidi = callPackage ../development/python-modules/python-bidi { }; 5778 + 5777 5779 python-binance = callPackage ../development/python-modules/python-binance { }; 5778 5780 5779 5781 python-constraint = callPackage ../development/python-modules/python-constraint { };