nixpkgs/pkgs/development/python-modules/language-tool-python/default.nix
Martin Weinelt ed21215db9 python3Packages.language-tool-python: 3.1.0 -> 3.2.2
https://github.com/jxmorris12/language_tool_python/releases/tag/3.2.2

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:25 +01:00

42 lines
855 B
Nix

{
fetchFromGitHub,
buildPythonPackage,
lib,
setuptools,
requests,
tqdm,
psutil,
toml,
pip,
}:
buildPythonPackage rec {
pname = "language-tool-python";
version = "3.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jxmorris12";
repo = "language_tool_python";
tag = version;
hash = "sha256-GhFAX0x17EveJPUT8b98zAB4w9+wkVAO8EQHdtWoIv8=";
};
build-system = [ setuptools ];
dependencies = [
requests
tqdm
psutil
toml
pip
];
meta = {
description = "Free python grammar checker";
homepage = "https://github.com/jxmorris12/language_tool_python";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ justdeeevin ];
platforms = lib.platforms.all;
changelog = "https://github.com/jxmorris12/language_tool_python/releases/tag/${src.tag}";
};
}