forked from mirrors/nixpkgs
26 lines
514 B
Nix
26 lines
514 B
Nix
{ 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 ];
|
|
};
|
|
}
|