From da31c0c8d04dbf490fcf43a1540b7d2254a7be72 Mon Sep 17 00:00:00 2001 From: Austin Butler Date: Mon, 4 Aug 2025 12:33:02 -0700 Subject: [PATCH] python3Packages.identify: remove editdistance-s dependency --- pkgs/development/python-modules/identify/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/identify/default.nix b/pkgs/development/python-modules/identify/default.nix index f59607f9981e..114d232e0af7 100644 --- a/pkgs/development/python-modules/identify/default.nix +++ b/pkgs/development/python-modules/identify/default.nix @@ -1,10 +1,10 @@ { lib, buildPythonPackage, - editdistance-s, fetchFromGitHub, pytestCheckHook, pythonOlder, + cffi, setuptools, ukkonen, }: @@ -26,18 +26,18 @@ buildPythonPackage rec { build-system = [ setuptools ]; dependencies = [ - editdistance-s + cffi pytestCheckHook ukkonen ]; pythonImportsCheck = [ "identify" ]; - meta = with lib; { + meta = { description = "File identification library for Python"; - homepage = "https://github.com/chriskuehl/identify"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + homepage = "https://github.com/pre-commit/identify"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "identify-cli"; }; }