0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

pythonPackages.pyspelling: init at 2.10

This commit is contained in:
Adam C. Stephens 2025-04-01 18:25:56 +00:00
parent 9d55c960ba
commit e06dd5475e
No known key found for this signature in database
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,49 @@
{
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; [ ];
};
}

View file

@ -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 { };