Merge pull request #210494 from r-ryantm/auto-update/python310Packages.arabic-reshaper
python310Packages.arabic-reshaper: 2.1.4 -> 3.0.0
This commit is contained in:
commit
868bb34ff1
1 changed files with 4 additions and 8 deletions
|
@ -2,14 +2,13 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fonttools
|
, fonttools
|
||||||
, future
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "arabic-reshaper";
|
pname = "arabic-reshaper";
|
||||||
version = "2.1.4";
|
version = "3.0.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
@ -17,14 +16,10 @@ buildPythonPackage rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mpcabd";
|
owner = "mpcabd";
|
||||||
repo = "python-arabic-reshaper";
|
repo = "python-arabic-reshaper";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-qQGIC/KequOQZoxwm7AEkdPV0QpS7YoBV9v8ZA7AYQM=";
|
hash = "sha256-ucSC5aTvpnlAVQcT0afVecnoN3hIZKtzUhEQ6Qg0jQM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
future
|
|
||||||
];
|
|
||||||
|
|
||||||
passthru.optional-dependencies = {
|
passthru.optional-dependencies = {
|
||||||
with-fonttools = [
|
with-fonttools = [
|
||||||
fonttools
|
fonttools
|
||||||
|
@ -42,6 +37,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic";
|
description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic";
|
||||||
homepage = "https://github.com/mpcabd/python-arabic-reshaper";
|
homepage = "https://github.com/mpcabd/python-arabic-reshaper";
|
||||||
|
changelog = "https://github.com/mpcabd/python-arabic-reshaper/releases/tag/v${version}";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ freezeboy ];
|
maintainers = with maintainers; [ freezeboy ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue