summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-14 11:33:58 +0100
committerGitHub <noreply@github.com>2023-01-14 11:33:58 +0100
commit2caf7f66404d9723265cb69c96e3aa178bed0bcc (patch)
tree905b48200b78dec8ed207d36699e91c5b8431e21 /pkgs/development
parentc1fed663935e0b38381c7751f4301c49fbe46620 (diff)
downloadnixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.tar
nixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.tar.gz
nixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.tar.bz2
nixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.tar.lz
nixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.tar.xz
nixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.tar.zst
nixpkgs-2caf7f66404d9723265cb69c96e3aa178bed0bcc.zip
python310Packages.arabic-reshaper: add changelog to meta
- adjust inputs
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/arabic-reshaper/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/arabic-reshaper/default.nix b/pkgs/development/python-modules/arabic-reshaper/default.nix
index 0b88946893c..d92f549b35a 100644
--- a/pkgs/development/python-modules/arabic-reshaper/default.nix
+++ b/pkgs/development/python-modules/arabic-reshaper/default.nix
@@ -2,7 +2,6 @@
 , buildPythonPackage
 , fetchFromGitHub
 , fonttools
-, future
 , pytestCheckHook
 , pythonOlder
 }:
@@ -21,10 +20,6 @@ buildPythonPackage rec {
     hash = "sha256-ucSC5aTvpnlAVQcT0afVecnoN3hIZKtzUhEQ6Qg0jQM=";
   };
 
-  propagatedBuildInputs = [
-    future
-  ];
-
   passthru.optional-dependencies = {
     with-fonttools = [
       fonttools
@@ -42,6 +37,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic";
     homepage = "https://github.com/mpcabd/python-arabic-reshaper";
+    changelog = "https://github.com/mpcabd/python-arabic-reshaper/releases/tag/v${version}";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ freezeboy ];
   };