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:
parent
9d55c960ba
commit
e06dd5475e
2 changed files with 51 additions and 0 deletions
49
pkgs/development/python-modules/pyspelling/default.nix
Normal file
49
pkgs/development/python-modules/pyspelling/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue