biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyspellchecker / default.nix
blobe1696d0382a18f8b3e9633f5d86e82c1da83ee5b
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "pyspellchecker";
11   version = "0.8.1";
12   format = "pyproject";
14   src = fetchFromGitHub {
15     owner = "barrust";
16     repo = "pyspellchecker";
17     rev = "refs/tags/v${version}";
18     hash = "sha256-8IwTMj/RqMc9UqhzyvmrirPGuMEwj3iMr+FmF+8312U=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   meta = with lib; {
26     description = "Pure python spell checking";
27     homepage = "https://github.com/barrust/pyspellchecker";
28     license = licenses.mit;
29     maintainers = with maintainers; [ zendo ];
30   };