Merge pull request #330759 from pyrox0/pythonpackages/drop-pyutilib

python312Packages.pyutilib: drop
This commit is contained in:
OTABI Tomoya 2024-07-29 20:18:59 +09:00 committed by GitHub
commit 238edcd476
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 36 deletions

View File

@ -1,34 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
nose,
six,
}:
buildPythonPackage rec {
pname = "pyutilib";
version = "6.0.0";
format = "setuptools";
src = fetchPypi {
pname = "PyUtilib";
inherit version;
hash = "sha256-08FPjtkCioMbK/Ubird3brqH5mz8WKBrmcNZqqZA8EA=";
};
propagatedBuildInputs = [
nose
six
];
# tests require text files that are not included in the pypi package
doCheck = false;
meta = with lib; {
description = "PyUtilib: A collection of Python utilities";
homepage = "https://github.com/PyUtilib/pyutilib";
license = licenses.bsd3;
maintainers = [ ];
};
}

View File

@ -480,6 +480,7 @@ mapAliases ({
pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30
pytwitchapi = twitchapi; # added 2022-03-07
pyuavcan = throw "pyuavcan has been renamed to pycyphal and the old package deprecated, use pycyphal instead"; # added 2024-02-09
pyutilib = throw "pyutilib has been removed, since it is no longer maintained"; # added 2024-07-28
pyvcf = throw "pyvcf has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-05-19
PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01

View File

@ -13030,8 +13030,6 @@ self: super: with self; {
pyuseragents = callPackage ../development/python-modules/pyuseragents { };
pyutilib = callPackage ../development/python-modules/pyutilib { };
pyuv = callPackage ../development/python-modules/pyuv { };
py-vapid = callPackage ../development/python-modules/py-vapid { };