mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
python3Packages.python-bidi: init at 0.4.2
This commit is contained in:
parent
b5a2e19005
commit
caa738142f
20
pkgs/development/python-modules/python-bidi/default.nix
Normal file
20
pkgs/development/python-modules/python-bidi/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -5774,6 +5774,8 @@ in {
|
||||
|
||||
python-baseconv = callPackage ../development/python-modules/python-baseconv { };
|
||||
|
||||
python-bidi = callPackage ../development/python-modules/python-bidi { };
|
||||
|
||||
python-binance = callPackage ../development/python-modules/python-binance { };
|
||||
|
||||
python-constraint = callPackage ../development/python-modules/python-constraint { };
|
||||
|
Loading…
Reference in New Issue
Block a user