Files
nixpkgs/pkgs/development/python-modules/pyspelling/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

50 lines
719 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
beautifulsoup4,
html5lib,
lxml,
markdown,
pyyaml,
soupsieve,
wcmatch,
}:
buildPythonPackage rec {
pname = "pyspelling";
version = "2.11";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-lMxu+pecJneWAa1mb42Yat9S0kezEzN61nqscWN0nQ4=";
};
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 = [ ];
};
}