Merge pull request #200129 from zendo/pyspellchecker

python310Packages.pyspellchecker: init at 0.7.0
This commit is contained in:
Pierre Bourdon 2022-11-08 06:02:28 +01:00 committed by GitHub
commit 95b3912426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pyspellchecker";
version = "0.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-zKbDJCjuOI0Vsbh+lK/Dv5T7GGK6hIo7RJvs1inSatM=";
};
# no tests in PyPI
doCheck = false;
meta = with lib; {
description = "Pure python spell checking";
homepage = "https://github.com/barrust/pyspellchecker";
license = licenses.mit;
maintainers = with maintainers; [ zendo ];
};
}

View File

@ -8612,6 +8612,8 @@ self: super: with self; {
pyspcwebgw = callPackage ../development/python-modules/pyspcwebgw { };
pyspellchecker = callPackage ../development/python-modules/pyspellchecker { };
pyspf = callPackage ../development/python-modules/pyspf { };
pyspice = callPackage ../development/python-modules/pyspice { };