1{ lib
2, buildPythonPackage
3, fetchPypi
4, pkg-config
5, gobject-introspection
6, pygobject3
7, gtk3
8, glib
9}:
10
11buildPythonPackage rec {
12 pname = "gtkme";
13 version = "1.5.3";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "sha256-NIUgnbfcHjbPfsH3CF2Bywo8owrdsi1wqDoMxOa+2U4=";
18 };
19
20 nativeBuildInputs = [ pkg-config gobject-introspection gtk3 ];
21 buildInputs = [ pygobject3 glib ];
22 propagatedBuildInputs = [ gtk3 ];
23
24 pythonImportsCheck = [
25 "gtkme"
26 ];
27
28 meta = with lib; {
29 description = "Manages an Application with Gtk windows, forms, lists and other complex items easily";
30 homepage = "https://gitlab.com/doctormo/gtkme";
31 license = licenses.gpl3Plus;
32 maintainers = with maintainers; [
33 revol-xut
34 ];
35 };
36}