1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pyspellchecker"; 8 version = "0.7.0"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-zKbDJCjuOI0Vsbh+lK/Dv5T7GGK6hIo7RJvs1inSatM="; 14 }; 15 16 # no tests in PyPI 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Pure python spell checking"; 21 homepage = "https://github.com/barrust/pyspellchecker"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ zendo ]; 24 }; 25}