about summary refs log tree commit diff
path: root/pkgs/development/python-modules/textdistance/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/textdistance/default.nix')
-rw-r--r--pkgs/development/python-modules/textdistance/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/textdistance/default.nix b/pkgs/development/python-modules/textdistance/default.nix
index c362e936eb32d..0f51381f540f8 100644
--- a/pkgs/development/python-modules/textdistance/default.nix
+++ b/pkgs/development/python-modules/textdistance/default.nix
@@ -1,27 +1,26 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
   pname = "textdistance";
-  version = "4.6.1";
+  version = "4.6.2";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-JYllgBse+FaGppq/bDzv3F2iHC+9iMkMaHJfV6fUXyE=";
+    hash = "sha256-AeH7z3uHHrj0GRHZT0YbC5nPgAM4TuDhw0ylwaerLtA=";
   };
 
   # There aren't tests
   doCheck = false;
 
-  pythonImportsCheck = [
-    "textdistance"
-  ];
+  pythonImportsCheck = [ "textdistance" ];
 
   meta = with lib; {
     description = "Python library for comparing distance between two or more sequences";