python3Packages.pygtkspellcheck: init at 4.0.6

This commit is contained in:
Konrad Borowski 2021-05-30 21:58:55 +02:00
parent fb651e653b
commit 7747a60811
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi, gobject-introspection, gtk3, pyenchant, pygobject3 }:
buildPythonPackage rec {
pname = "pygtkspellcheck";
version = "4.0.6";
src = fetchPypi {
inherit pname version;
sha256 = "0pc3xmv1q775hn4kc1kspvpdn4gm7ix3aw6hz9iy3brfcw6ddcl4";
};
nativeBuildInputs = [ gobject-introspection gtk3 ];
propagatedBuildInputs = [ pyenchant pygobject3 ];
doCheck = false; # there are no tests
pythonImportsCheck = [ "gtkspellcheck" ];
meta = with lib; {
homepage = "https://github.com/koehlma/pygtkspellcheck";
description = "A Python spell-checking library for GtkTextViews based on Enchant";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ xfix ];
};
}

View file

@ -5767,6 +5767,8 @@ in {
pygtail = callPackage ../development/python-modules/pygtail { };
pygtkspellcheck = callPackage ../development/python-modules/pygtkspellcheck { };
pygtrie = callPackage ../development/python-modules/pygtrie { };
pyhamcrest = callPackage ../development/python-modules/pyhamcrest { };