Unverified Commit e06dd547 authored by Adam C. Stephens's avatar Adam C. Stephens
Browse files

pythonPackages.pyspelling: init at 2.10

parent 9d55c960
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  hatchling,
  beautifulsoup4,
  html5lib,
  lxml,
  markdown,
  pyyaml,
  soupsieve,
  wcmatch,
}:

buildPythonPackage rec {
  pname = "pyspelling";
  version = "2.10";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-rNZxM8G3zs1BDj1EieYfLksfC2rPGubEjCQPuyFynDc=";
  };

  build-system = [
    hatchling
  ];

  dependencies = [
    beautifulsoup4
    html5lib
    lxml
    markdown
    pyyaml
    soupsieve
    wcmatch
  ];

  pythonImportsCheck = [
    "pyspelling"
  ];

  meta = {
    description = "Spell checker";
    homepage = "https://pypi.org/project/pyspelling";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13326,6 +13326,8 @@ self: super: with self; {
  pyspellchecker = callPackage ../development/python-modules/pyspellchecker { };
  pyspelling = callPackage ../development/python-modules/pyspelling { };
  pyspf = callPackage ../development/python-modules/pyspf { };
  pyspice = callPackage ../development/python-modules/pyspice { };