python2Packages.gtkme: remove

This commit is contained in:
Robert Schütz 2022-12-09 12:15:46 -08:00
parent a9028840ef
commit 4bd693080a
2 changed files with 0 additions and 38 deletions

View File

@ -1,36 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, pkg-config
, gobject-introspection
, pygobject3
, gtk3
, glib
}:
buildPythonPackage rec {
pname = "gtkme";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-NIUgnbfcHjbPfsH3CF2Bywo8owrdsi1wqDoMxOa+2U4=";
};
nativeBuildInputs = [ pkg-config gobject-introspection gtk3 ];
buildInputs = [ pygobject3 glib ];
propagatedBuildInputs = [ gtk3 ];
pythonImportsCheck = [
"gtkme"
];
meta = with lib; {
description = "Manages an Application with Gtk windows, forms, lists and other complex items easily";
homepage = "https://gitlab.com/doctormo/gtkme";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
revol-xut
];
};
}

View File

@ -21,8 +21,6 @@ with self; with super; {
futures = callPackage ../development/python2-modules/futures { };
gtkme = callPackage ../development/python2-modules/gtkme { };
hypothesis = callPackage ../development/python2-modules/hypothesis { };
importlib-metadata = callPackage ../development/python2-modules/importlib-metadata { };