python311Packages.pygogo: drop

This commit is contained in:
Sigmanificient 2024-07-25 22:17:29 +02:00
parent 956c99c0af
commit fada29bff6
3 changed files with 1 additions and 50 deletions

View File

@ -1,48 +0,0 @@
{
lib,
pythonOlder,
buildPythonPackage,
fetchFromGitHub,
pkutils,
# Check Inputs
nose,
}:
buildPythonPackage rec {
pname = "pygogo";
version = "0.13.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "reubano";
repo = "pygogo";
rev = "v${version}";
sha256 = "19rdf4sjrm5lp1vq1bki21a9lrkzz8sgrfwgjdkq4sgy90hn1jn9";
};
nativeBuildInputs = [ pkutils ];
nativeCheckInputs = [ nose ];
postPatch = ''
substituteInPlace dev-requirements.txt \
--replace "pkutils>=1.0.0,<2.0.0" "pkutils>=1.0.0"
'';
checkPhase = ''
runHook preCheck
nosetests
runHook postCheck
'';
pythonImportsCheck = [ "pygogo" ];
meta = with lib; {
description = "Python logging library";
homepage = "https://github.com/reubano/pygogo/";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}

View File

@ -381,6 +381,7 @@ mapAliases ({
pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
pyjet = throw "pyjet is deprecated, use fastjet instead"; # added 2023-05-10
pygame_sdl2 = pygame-sdl2; # added 2024-01-07
pygogo = throw "pygogo has been removed, since it is abandoned and had no maintainer"; # added 2024-07-27
pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20
PyGithub = pygithub; # added 2023-02-19
pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15

View File

@ -11388,8 +11388,6 @@ self: super: with self; {
pygobject-stubs = callPackage ../development/python-modules/pygobject-stubs { };
pygogo = callPackage ../development/python-modules/pygogo { };
pygpgme = callPackage ../development/python-modules/pygpgme { };
pygraphviz = callPackage ../development/python-modules/pygraphviz {