python312Packages.quamash: drop

This commit is contained in:
Nick Cao
2024-10-17 17:07:31 -04:00
parent 5160edc348
commit 0fbe6fec88
3 changed files with 1 additions and 50 deletions
@@ -1,48 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest,
isPy3k,
pyqt5,
pyqt ? pyqt5,
fetchpatch,
}:
buildPythonPackage rec {
pname = "quamash";
version = "0.6.1";
format = "setuptools";
disabled = !isPy3k;
# No tests in PyPi tarball
src = fetchFromGitHub {
owner = "harvimt";
repo = "quamash";
rev = "version-${version}";
sha256 = "117rp9r4lz0kfz4dmmpa35hp6nhbh6b4xq0jmgvqm68g9hwdxmqa";
};
patches = [
# add 3.10 compatibility, merged remove on next update
(fetchpatch {
url = "https://github.com/harvimt/quamash/pull/126/commits/1e9047bec739dbc9d6ab337fc1a111a8b1090244.patch";
hash = "sha256-6gomY82AOKkrt32SEBKnRugzhnC5FAyKDs6K5xaxnRM=";
})
];
propagatedBuildInputs = [ pyqt ];
nativeCheckInputs = [ pytest ];
checkPhase = ''
pytest -k 'test_qthreadexec.py' # the others cause the test execution to be aborted, I think because of asyncio
'';
meta = with lib; {
description = "Implementation of the PEP 3156 event-loop (asyncio) api using the Qt Event-Loop";
homepage = "https://github.com/harvimt/quamash";
license = licenses.bsd2;
maintainers = with maintainers; [ borisbabic ];
};
}
+1
View File
@@ -542,6 +542,7 @@ mapAliases ({
qds-sdk = throw "qds-sdk was removed as it is unmaintained upstream and depends on the removed boto package"; # Added 2024-09-22
qds_sdk = qds-sdk; # added 2023-10-21
Quandl = quandl; # added 2023-02-19
quamash = throw "'quamash' has been removed, since it is unmaintained and broken"; # added 2024-10-17
querystring_parser = querystring-parser; # added 2024-01-07
qcodes-loop = throw "qcodes-loop has been removed due to deprecation"; # added 2023-11-30
qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
-2
View File
@@ -13329,8 +13329,6 @@ self: super: with self; {
qualysclient = callPackage ../development/python-modules/qualysclient { };
quamash = callPackage ../development/python-modules/quamash { };
quandl = callPackage ../development/python-modules/quandl { };
quantile-forest = callPackage ../development/python-modules/quantile-forest { };