python3Packages.asyncstdlib-fw: drop

This commit is contained in:
Sarah Clark
2026-06-09 16:58:00 -07:00
parent 050857a4ce
commit 63f3e41fd2
3 changed files with 1 additions and 40 deletions
@@ -1,38 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
pdm-backend,
}:
buildPythonPackage rec {
pname = "asyncstdlib-fw";
version = "3.13.2";
pyproject = true;
# Not available from any repo
src = fetchPypi {
pname = "asyncstdlib_fw";
inherit version;
hash = "sha256-Ua0JTCBMWTbDBA84wy/W1UmzkcmA8h8foJW2X7aAah8=";
};
build-system = [
pdm-backend
];
doCheck = false; # no tests supplied
pythonImportsCheck = [
"asyncstdlib"
];
meta = {
description = "Fork of asyncstdlib that work with fireworks-ai";
homepage = "https://pypi.org/project/asyncstdlib-fw/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sarahec ];
};
}
+1
View File
@@ -96,6 +96,7 @@ mapAliases {
async_generator = throw "'async_generator' has been renamed to/replaced by 'async-generator'"; # Converted to throw 2025-10-29
async_stagger = throw "'async_stagger' has been renamed to/replaced by 'async-stagger'"; # Converted to throw 2025-10-29
asyncio-nats-client = throw "'asyncio-nats-client' has been renamed to/replaced by 'nats-py'"; # Converted to throw 2025-10-29
asyncstdlib-fw = throw "'asyncstdlib-fw' has been removed as it is not longer required by fireworks-ai"; # Added 2026-06-09
atsim_potentials = throw "'atsim_potentials' has been renamed to/replaced by 'atsim-potentials'"; # Converted to throw 2025-10-29
aubio = throw "'aubio' only direct user LedFX switched to a fork named 'aubio-ledfx', hence the aubio package has been replaced."; # Added 2026-04-20
audio-metadata = throw "'audio-metadata' has been removed as it's unmaintained since 2020"; # Added 2026-03-12
-2
View File
@@ -1180,8 +1180,6 @@ self: super: with self; {
asyncstdlib = callPackage ../development/python-modules/asyncstdlib { };
asyncstdlib-fw = callPackage ../development/python-modules/asyncstdlib-fw { };
asynctest = callPackage ../development/python-modules/asynctest { };
asyncua = callPackage ../development/python-modules/asyncua { };