python310Packages.pyspellchecker: init at 0.7.0
This commit is contained in:
parent
a362cc95bd
commit
25f3b1cbcb
25
pkgs/development/python-modules/pyspellchecker/default.nix
Normal file
25
pkgs/development/python-modules/pyspellchecker/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -8608,6 +8608,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user