python310Packages.pyext: remove unmaintained and unused package

This commit is contained in:
Sandro Jäckel 2022-11-21 02:49:38 +01:00
parent 9afbff9b31
commit 435fc65e74
3 changed files with 1 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage {
pname = "pyext";
version = "0.8";
# Latest release not on Pypi or tagged since 2015
src = fetchFromGitHub {
owner = "kirbyfan64";
repo = "PyExt";
rev = "1e018b12752ceb279f11aee123ed773d63dcec7e";
sha256 = "16km897ng6lgjs39hv83xragdxh0mhyw6ds0qkm21cyci1k5m1vm";
};
# Has no test suite
doCheck = false;
meta = with lib; {
description = "Simple Python extensions";
homepage = "https://github.com/kirbyfan64/PyExt";
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];
};
}

View file

@ -1228,6 +1228,7 @@ mapAliases ({
pyMAILt = throw "pyMAILt has been removed from nixpkgs as it is unmaintained and python2-only";
pybind11 = throw "pybind11 was removed because pythonPackages.pybind11 for the appropriate version of Python should be used"; # Added 2021-05-14
pybitmessage = throw "pybitmessage was removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01
pyext = throw "pyext was removed because it does not support python 3.11, is upstream unmaintained and was unused"; # Added 2022-11-21
pygmentex = texlive.bin.pygmentex; # Added 2019-12-15
pyload = throw "pyload has been removed from nixpkgs, as it was unmaintained"; # Added 2021-03-21
pynagsystemd = throw "pynagsystemd was removed as it was unmaintained and incompatible with recent systemd versions. Instead use its fork check_systemd"; # Added 2020-10-24

View file

@ -7785,8 +7785,6 @@ self: super: with self; {
pyexcel-xls = callPackage ../development/python-modules/pyexcel-xls { };
pyext = callPackage ../development/python-modules/pyext { };
pyezviz = callPackage ../development/python-modules/pyezviz { };
pyface = callPackage ../development/python-modules/pyface { };