python3Packages.pyqldb: drop

This commit is contained in:
Terje Larsen
2025-07-30 14:36:54 +02:00
parent 1dc12f197e
commit bc2e2185e5
3 changed files with 1 additions and 47 deletions
@@ -1,45 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
boto3,
amazon-ion,
ionhash,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyqldb";
version = "3.2.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "awslabs";
repo = "amazon-qldb-driver-python";
tag = "v${version}";
hash = "sha256-u8wI8ThD/BA+WI62OvNFmYvcqr018wgrh+5J+p2A6hM=";
};
propagatedBuildInputs = [
boto3
amazon-ion
ionhash
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export AWS_DEFAULT_REGION=us-east-1
'';
enabledTestPaths = [ "tests/unit" ];
pythonImportsCheck = [ "pyqldb" ];
meta = with lib; {
description = "Python driver for Amazon QLDB";
homepage = "https://github.com/awslabs/amazon-qldb-driver-python";
license = licenses.asl20;
maintainers = [ maintainers.terlar ];
};
}
+1
View File
@@ -583,6 +583,7 @@ mapAliases ({
python-picnic-api = throw "python-picnic-api was removed because Home Assistant switched to python-picnic-api2"; # added 2025-03-05
python-unshare = throw "python-unshare was removed as unmaintained since 2016"; # added 2025-05-25
pytrends = throw "pytrends has been removed, as it no longer works and is abandoned upstream"; # added 2025-02-02
pyqldb = throw "pyqldb has been removed, because the underlying service is reaching end of support"; # added 2025-07-30
pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09
pyqt5_sip = pyqt5-sip; # added 2024-01-07
pyqt5_with_qtmultimedia = pyqt5-multimedia; # added 2024-01-07
-2
View File
@@ -13579,8 +13579,6 @@ self: super: with self; {
pypytools = callPackage ../development/python-modules/pypytools { };
pyqldb = callPackage ../development/python-modules/pyqldb { };
pyqrcode = callPackage ../development/python-modules/pyqrcode { };
pyqt-builder = callPackage ../development/python-modules/pyqt-builder { };