Unverified Commit 95b39124 authored by Pierre Bourdon's avatar Pierre Bourdon Committed by GitHub
Browse files

Merge pull request #200129 from zendo/pyspellchecker

python310Packages.pyspellchecker: init at 0.7.0
parents 4397ca5f 25f3b1cb
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };