python3Packages.plumlightpad: drop

This commit is contained in:
Robert Schütz
2025-11-05 18:26:14 -08:00
parent dec182fa5d
commit 6bcfd28cbd
3 changed files with 1 additions and 43 deletions
@@ -1,41 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
standard-telnetlib,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "plumlightpad";
version = "0.0.11";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-5J+kk/fn45v/1WIsBuq6o7hivXkCaJ1Of7BLRf10rCk=";
};
build-system = [ setuptools ];
dependencies = [
requests
standard-telnetlib
];
nativeCheckInputs = [ pytestCheckHook ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "plumlightpad" ];
meta = {
description = "A python package that interacts with the Plum Lightpad";
homepage = "https://github.com/heathbar/plum-lightpad-python";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+1
View File
@@ -283,6 +283,7 @@ mapAliases {
pdfminer = throw "'pdfminer' has been renamed to/replaced by 'pdfminer-six'"; # Converted to throw 2025-10-29
pep257 = throw "'pep257' has been renamed to/replaced by 'pydocstyle'"; # Converted to throw 2025-10-29
percol = throw "percol has been removed because it hasn't been updated since 2019"; # added 2025-05-25
plumlightpad = throw "plumlightpad has been removed because the API was shut down"; # added 2025-11-04
Polygon3 = throw "'Polygon3' has been renamed to/replaced by 'polygon3'"; # Converted to throw 2025-10-29
posix_ipc = throw "'posix_ipc' has been renamed to/replaced by 'posix-ipc'"; # Converted to throw 2025-10-29
postgrest-py = postgrest; # added 2025-08-29
-2
View File
@@ -12070,8 +12070,6 @@ self: super: with self; {
plumbum = callPackage ../development/python-modules/plumbum { };
plumlightpad = callPackage ../development/python-modules/plumlightpad { };
pluthon = callPackage ../development/python-modules/pluthon { };
plux = callPackage ../development/python-modules/plux { };