summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2025-03-14 03:06:06 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2025-03-14 03:06:06 +0000
commitdbb0dbfe19f7e2dfd3ececa30d9fec06c237bcdf (patch)
treedda132c814a7b1e515f789ffcbc9b15fe9253418 /pkgs/development/python-modules
parent573c650e8a14b2faa0041645ab18aed7e60f0c9a (diff)
python312Packages.language-tool-python: 2.8.0 -> 2.9.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/language-tool-python/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/language-tool-python/default.nix b/pkgs/development/python-modules/language-tool-python/default.nix
index 63d606a0dea1..4d5b791eabc4 100644
--- a/pkgs/development/python-modules/language-tool-python/default.nix
+++ b/pkgs/development/python-modules/language-tool-python/default.nix
@@ -6,15 +6,15 @@
}:
buildPythonPackage rec {
pname = "language-tool-python";
- version = "2.8.0";
+ version = "2.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jxmorris12";
repo = "language_tool_python";
- tag = "${version}";
- hash = "sha256-v82RCg2lE0/ETJTiMogrI09fZ28tq1jhzFhbC89kbTU=";
+ tag = version;
+ hash = "sha256-CiKwuCMfgU7Vo0rwbKyI++EJBuKBrN1q7alwYGKuXXQ=";
};
build-system = [ python3.pkgs.setuptools ];
@@ -32,6 +32,6 @@ buildPythonPackage rec {
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ justdeeevin ];
platforms = lib.platforms.all;
- changelog = "https://github.com/jxmorris12/language_tool_python/releases/tag/${version}";
+ changelog = "https://github.com/jxmorris12/language_tool_python/releases/tag/${src.tag}";
};
}