1lib: self: super: 2 3with self; 4 5let 6 # Removing recurseForDerivation prevents derivations of aliased attribute 7 # set to appear while listing all the packages available. 8 removeRecurseForDerivations = 9 alias: 10 if alias.recurseForDerivations or false then 11 lib.removeAttrs alias [ "recurseForDerivations" ] 12 else 13 alias; 14 15 # Disabling distribution prevents top-level aliases for non-recursed package 16 # sets from building on Hydra. 17 removeDistribute = alias: if lib.isDerivation alias then lib.dontDistribute alias else alias; 18 19 # Make sure that we are not shadowing something from 20 # python-packages.nix. 21 checkInPkgs = 22 n: alias: 23 if builtins.hasAttr n super then throw "Alias ${n} is still in python-packages.nix" else alias; 24 25 mapAliases = 26 aliases: 27 lib.mapAttrs ( 28 n: alias: removeDistribute (removeRecurseForDerivations (checkInPkgs n alias)) 29 ) aliases; 30in 31 32### Deprecated aliases - for backward compatibility 33 34mapAliases ({ 35 # Prevent incorrect Python packaging attempts. 36 # Note: `{ python3, python3Packages, ... }: with python3Packages; [ ... python3 ]` still works, since `with` has lower priority. 37 pythonPackages = throw "do not use pythonPackages when building Python packages, specify each used package as a separate argument"; # do not remove 38 python2Packages = throw "do not use python2Packages when building Python packages, specify each used package as a separate argument"; # do not remove 39 python27Packages = throw "do not use python27Packages when building Python packages, specify each used package as a separate argument"; # do not remove 40 python3Packages = throw "do not use python3Packages when building Python packages, specify each used package as a separate argument"; # do not remove 41 python310Packages = throw "do not use python310Packages when building Python packages, specify each used package as a separate argument"; # do not remove 42 python311Packages = throw "do not use python311Packages when building Python packages, specify each used package as a separate argument"; # do not remove 43 python312Packages = throw "do not use python312Packages when building Python packages, specify each used package as a separate argument"; # do not remove 44 python313Packages = throw "do not use python313Packages when building Python packages, specify each used package as a separate argument"; # do not remove 45 python2 = throw "do not use python2 when building Python packages, use the generic python parameter instead"; # do not remove 46 python3 = throw "do not use python3 when building Python packages, use the generic python parameter instead"; # do not remove 47 python310 = throw "do not use python310 when building Python packages, use the generic python parameter instead"; # do not remove 48 python311 = throw "do not use python311 when building Python packages, use the generic python parameter instead"; # do not remove 49 python312 = throw "do not use python312 when building Python packages, use the generic python parameter instead"; # do not remove 50 python313 = throw "do not use python313 when building Python packages, use the generic python parameter instead"; # do not remove 51 pypy = throw "do not use pypy when building Python packages, use the generic python parameter instead"; # do not remove 52 pypy2 = throw "do not use pypy2 when building Python packages, use the generic python parameter instead"; # do not remove 53 pypy27 = throw "do not use pypy27 when building Python packages, use the generic python parameter instead"; # do not remove 54 pypy3 = throw "do not use pypy3 when building Python packages, use the generic python parameter instead"; # do not remove 55 pypy310 = throw "do not use pypy310 when building Python packages, use the generic python parameter instead"; # do not remove 56 pypy311 = throw "do not use pypy311 when building Python packages, use the generic python parameter instead"; # do not remove 57 58 aadict = throw "aadict was removed, it was introduced as a dependency for a package that never manifested and has been an unused leaf package ever since"; # added 2024-07-08 59 abodepy = jaraco-abode; # added 2023-02-01 60 acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19 61 acoustics = throw "acoustics has been removed because the upstream repository was archived in 2024"; # Added 2024-10-04 62 adafruit-nrfutil = throw "adafruit-nrfutil has been promoted to a top-level attribute name: `pkgs.adafruit-nrfutil`."; # Added 2023-11-19 63 aeppl = throw "aeppl was removed as it depends on aesara, which is unmaintained"; # added 2025-01-12 64 aesara = throw "aesara was removed as the upstream repository is unmaintained"; # added 2025-01-12 65 aioaladdinconnect = throw "aioaladdinconnect has been removed, as the API is supported was obsoleted on 2024-01-24."; # Added 2024-06-07 66 aiohttp-isal = throw "aiohttp-isal has been removed, as it has been archived and replace by aiohttp-fast-zlib"; # Added 2024-08-11 67 aiohttp-zlib-ng = throw "aiohttp-zlib-ng has been removed, as it has been archived and replaced by aiohttp-fast-zlib"; # Added 2024-11-14 68 aiomysensors = throw "aiomysensors has been removed, as it was packaged for Home Assistant, which migrated to pymysensors."; # Added 2024-07-07 69 aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30 70 aiolip = throw "aiolip has been removed because the upstream repository was archived in 2021"; # Added 2024-10-04 71 aiolivisi = throw "aiolivisi was removed because Home Assistant switched to livisi"; # added 2025-01-09 72 aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27 73 aiosenseme = throw "aiosenseme has been removed, because it does no longer work with the latest firmware and has become unmaintained"; # Added 2023-07-05 74 aioquic-mitmproxy = throw "aioquic-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-01-16 75 amazon_kclpy = amazon-kclpy; # added 2023-08-08 76 ambiclimate = throw "ambiclimate has been removed, because the service has been terminated after 2024-03-31."; # Added 2024-06-07 77 ambee = throw "ambee has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04 78 amiibo-py = throw "amiibo-py has been removed because the upstream repository was removed"; # Added 2025-01-13 79 ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30 80 ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute name: `pkgs.ansible-doctor`"; # Added 2023-05-16 81 ansible-lint = throw "ansible-lint has been promoted to a top-level attribute name: `pkgs.ansible-lint`"; # Added 2023-05-16 82 ansible-navigator = throw "ansible-navigator has been promoted to a top-level attribute name: pkgs.ansible-navigator"; # Added 2024-08-07 83 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 84 apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05 85 apkit = throw "apkit was removed because it is unmaintained upstream and different from apkit on PyPI"; # added 2025-09-13 86 argon2_cffi = argon2-cffi; # added 2022-05-09 87 arnparse = throw "arnparse has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04 88 APScheduler = apscheduler; # added 2023-02-19 89 async_generator = async-generator; # added 2023-08-08 90 async_stagger = async-stagger; # added 2023-08-08 91 asyncio-mqtt = throw "asyncio-mqtt has been replaced by aiomqtt, which is not API compatible."; # added 2024-07-07 92 asyncio-nats-client = nats-py; # added 2022-02-08 93 atsim_potentials = atsim-potentials; # added 2023-10-08 94 inherit (super.pkgs) autotrash; # added 2024-09-23 95 awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13 96 azure-functions-devops-build = throw "azure-functions-devops-build has been removed, because it is abandoned"; # added 2024-10-04 97 Babel = babel; # added 2022-05-06 98 backports-cached-property = throw "backports-cached-property has been removed, since we no longer need to backport to python3.7"; # added 2024-11-12 99 backports-shutil-get-terminal-size = throw "backports-shutil-get-terminal-size has been removed, since we no longer need to backport to python3.2"; # added 2024-11-12 100 backports-shutil-which = throw "backports-shutil-which has been removed, since we no longer need to backport to python3.2"; # added 2024-11-12 101 backports-zoneinfo = throw "backports-zoneinfo has been removed, since we no longer need to backport to python3.8"; # added 2024-11-12 102 backports_csv = throw "backports_csv has been removed, since we no longer need to backport to python2"; # added 2023-07-28 103 backports_functools_lru_cache = throw "backports_functools_lru_cache has been removed, since we no longer need to backport to python3.2"; # added 2023-07-28 104 backports_shutil_get_terminal_size = backports-shutil-get-terminal-size; # added 2024-04-21 105 backports_tempfile = throw "backports_tempfile has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28 106 backports_unittest-mock = throw "backports_unittest-mock has been removed, since we no longer need to backport to python3.2"; # added 2023-07-28 107 backports_weakref = throw "backports_weakref has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28 108 bash_kernel = bash-kernel; # added 2023-11-10 109 beancount_docverif = beancount-docverif; # added 2023-10-08 110 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 111 bip_utils = bip-utils; # 2023-10-08 112 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15 113 bjoern = throw "'bjoern' has been removed, as the upstream repository was unmaintained and it was using libraries with severe security issues."; # Added 2025-09-01 114 bkcharts = throw "'bkcharts' has been removed as the upstream repository was archived in 2018"; # added 2025-08-26 115 blessings = throw "blessings has been removed in favor of blessed, as it was unmaintained"; # added 2024-08-20 116 BlinkStick = blinkstick; # added 2023-02-19 117 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 118 boto = throw "boto was removed as it is deprecated upstream, had not been updated since 2018, and failed to build; please use boto3 and botocore"; # Added 2024-09-22 119 boxx = throw "boxx was removed as it is no longer used by any packages in nixpkgs."; # added 2025-02-08 120 bpycv = throw "bpycv was removed as it is incompatible with blender version 4 or later."; # added 2025-02-08 121 bsblan = python-bsblan; # added 2022-11-04 122 btchip = btchip-python; # added 2023-03-03 123 bugz = throw "use pkgs.pybugz instead"; # added 2024-12-31 124 bugzilla = python-bugzilla; # added 2024-10-17 125 buildbot = throw "use pkgs.buildbot instead"; # added 2022-04-07 126 buildbot-ui = throw "use pkgs.buildbot-ui instead"; # added 2022-04-07 127 buildbot-full = throw "use pkgs.buildbot-full instead"; # added 2022-04-07 128 buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07 129 buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07 130 buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07 131 bunch = throw "bunch has been removed as it is unmaintained since inception"; # added 2025-05-31 132 btsmarthub_devicelist = btsmarthub-devicelist; # added 2024-01-03 133 bt_proximity = bt-proximity; # added 2021-07-02 134 bz2file = throw "'bz2file' has beem removed, as it was not longed maintained upstream since 2020"; # added 2025-08-26 135 BTrees = btrees; # added 2023-02-19 136 cacheyou = throw "cacheyou has been removed, as it was no longer used for the only consumer pdm"; # added 2023-12-21 137 cadquery = throw "cadquery was removed, because it was disabled on all python version since 3.8 and marked as broken"; # added 2024-05-13 138 caffeWithCuda = throw "caffeWithCuda has been removed, as it was broken and required CUDA 10"; # Added 2024-11-20 139 can = python-can; # added 2024-08-12 140 carrot = throw "carrot has been removed, as its development was discontinued in 2012"; # added 2022-01-18 141 casbin = pycasbin; # added 2025-06-12 142 case = throw "case has been removed, since it is an unused leaf package with a dependency on the nose test framework"; # added 2024-07-08 143 cchardet = faust-cchardet; # added 2023-03-02 144 cepa = throw "cepa has been removed, as onionshare switched back to stem"; # added 2024-05-07 145 chainer = throw "chainer has been removed, as it is abandoned and broken"; # added 2024-12-31 146 chiabip158 = throw "chiabip158 has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 147 chiapos = throw "chiapos has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 148 chiavdf = throw "chiavdf has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 149 chia-rs = throw "chia-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 150 class-registry = phx-class-registry; # added 2021-10-05 151 cirq-ft = throw "cirq-ft is not longer provieded by cirq upstream"; # added 2024-08-31 152 cirq-rigetti = throw "cirq-rigetti was removed because it is no longer provided by upstream"; # added 2025-09-13 153 ciscoconfparse = throw "ciscoconfparse was archived by upstream, use ciscoconfparse2"; # added 2025-03-08 154 cld2-cffi = throw "cld2-cffi has been removed, as the last release was in 2016"; # added 2024-05-20 155 clvm = throw "clvm has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 156 clvm-rs = throw "clvm-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 157 clvm-tools = throw "clvm-tools has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 158 clvm-tools-rs = throw "clvm-tools-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26 159 cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09 160 codecov = throw "python-codecov has been removed, as it was broken and archived by upstream."; # Added 2024-10-24 161 codespell = throw "codespell has been promoted to a top-level attribute name: `pkgs.codespell`"; # Added 2022-10-02 162 ColanderAlchemy = colanderalchemy; # added 2023-02-19 163 command_runner = command-runner; # added 2024-03-06 164 commitizen = throw "commitizen has been promoted to a top-level attribute name: `pkgs.commitizen`"; # added 2025-09-14 165 CommonMark = commonmark; # added 2023-02-1 166 ConfigArgParse = configargparse; # added 2021-03-18 167 configshell = configshell-fb; # added 2025-03-14 168 coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04 169 covCore = throw "covCore was renamed to cov-core and subsequently removed since it has ben unmaintained since 2014"; # added 2024-05-20 170 cov-core = throw "cov-core has been removed, it was archived and unmaintained since 2014"; # added 2024-05-21 171 cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14 172 criticality-score = throw "use pkgs.criticality-score instead"; # added 2024-12-31 173 cryptacular = throw "cryptacular was removed, because it was disabled on all python version since 3.6 and last updated in 2021"; # Added 2024-05-13 174 cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23 175 cufflinks = throw "cufflinks has removed, since it is abandoned and broken"; # added 2025-02-16 176 curve25519-donna = throw "curve25519-donna was removed, since it is abandoned and unmaintained since 2015"; # added 2025-05-21 177 cx_Freeze = cx-freeze; # added 2023-08-02 178 cx_oracle = cx-oracle; # added 2024-01-03 179 d2to1 = throw "d2to1 is archived and no longer works with setuptools v68"; # added 2023-07-30 180 dask-expr = throw "dask-expr was removed because its features are available in dask"; # added 2025-02-07 181 dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24 182 dash-renderer = throw "dash-renderer has been removed since it is abandoned"; # added 2025-01-01 183 dateutil = python-dateutil; # added 2021-07-03 184 debian = python-debian; # added 2024-12-10 185 deep_merge = throw "deep_merge has been removed, since it is no longer maintained and may be broken."; # added 2023-10-09 186 demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 187 deprecat = throw "deprecat has been removed, it unmaintained and archived by upstream"; # added 2025-03-08 188 descartes = throw "descartes has been removed, since it is abandoned and broken"; # added 2023-06-21 189 detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04 190 dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04 191 dictpath = pathable; # added 2023-01-28 192 diff_cover = diff-cover; # added 2021-07-02 193 discogs_client = discogs-client; # added 2021-07-02 194 distutils_extra = distutils-extra; # added 2023-10-12 195 digital-ocean = python-digitalocean; # addad 2024-04-12 196 dj-stripe = throw "dj-stripe has been removed because it is unused and broken"; # added 2025-07-21 197 djangorestframework-guardian2 = throw "djangorestframework-guardian2 has been removed because djangorestframework-guardian is active again and the upstream project was archived"; # added 2025-08-22 198 djangorestframework-jwt = drf-jwt; # added 2021-07-20 199 django-allauth-2fa = throw "django-allauth-2fa was removed because it was unused and django-allauth now contains 2fa logic itself."; # added 2025-02-15 200 django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18 201 django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05 202 django_3 = throw "Django 3 has reached it#s EOL in 2024-04 and has therefore been removed."; # added 2025-01-25 203 django_appconf = django-appconf; # added 2022-03-03 204 django_classytags = django-classy-tags; # added 2023-07-25 205 django_colorful = django-colorful; # added 2023-07-25 206 django_compat = django-compat; # added 2023-07-25 207 django-compat = throw "django-compat has been removed. It provided forward/backport compat for django 1.x, which is long end of life."; # added 2023-07-26 208 django_contrib_comments = django-contrib-comments; # added 2023-07-25 209 django-crispy-bootstrap3 = crispy-bootstrap3; # added 2025-06-11 210 django-crispy-bootstrap4 = crispy-bootstrap4; # added 2025-06-11 211 django-crispy-bootstrap5 = crispy-bootstrap5; # added 2025-06-11 212 django-crontab = throw "django-crontabe has been removed beacause it is unmaintained since 2018"; # added 2024-08-21 213 django-discover-runner = throw "django-discover-runner was removed because it is no longer maintained."; # added 2022-11-21 214 django_environ = django-environ; # added 2021-12-25 215 django_extensions = django-extensions; # added 2022-01-09 216 django_guardian = django-guardian; # added 2022-05-19 217 django_hijack = django-hijack; # added 2023-05-16 218 django_hijack_admin = django-hijack-admin; # added 2023-05-16 219 django-hijack-admin = throw "django-hijack-admin has been removed, since it is no longer compatible to django-hijack"; # added 2023-06-21 220 django_modelcluster = django-modelcluster; # added 2022-04-02 221 django-mysql = throw "django-mysql has been removed, since it was an unused leaf package"; # added 2024-07-02 222 django_nose = django-nose; # added 2023-07-25 223 django-nose = throw "django-nose has been removed since it has not been maintained and there are no dependent packages"; # added 2024-05-21 224 django-q = throw "django-q has been removed because it is unmaintained and was unused"; # added 2024-12-13 225 django_reversion = django-reversion; # added 2022-06-18 226 django_polymorphic = django-polymorphic; # added 2022-05-24 227 django_redis = django-redis; # added 2021-10-11 228 django_silk = django-silk; # added 2023-07-25 229 django-sr = throw "django-sr has been removed since it has been unmaintained for 10 years"; # added 2024-05-26 230 django_tagging = django-tagging; # added 2023-07-25 231 django_taggit = django-taggit; # added 2021-10-11 232 django_treebeard = django-treebeard; # added 2023-07-25 233 dns = dnspython; # added 2017-12-10 234 docker_pycreds = docker-pycreds; # added 2024-01-03 235 docker-py = throw "docker-py was renamed to docker in version 2.0.0 back in 2016"; # added 2024-05-29 236 doctest-ignore-unicode = throw "doctest-ignore-unicode has been removed since it has been unmaintained for 11 years"; # added 2024-05-20 237 dogpile_cache = dogpile-cache; # added 2021-10-28 238 dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20 239 dugong = throw "dugong is unmaintained since 2022 and has therefore been removed"; # added 2024-12-12 240 editdistance-s = throw "editdistance-s has been removed since it was added solely for the identity package, which has moved on to ukkonen"; # added 2025-08-04 241 easyeda2ato = throw "easyeda2ato as been removed in favor of atopile-easyda2kicad"; # added 2025-06-08 242 eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03 243 EasyProcess = easyprocess; # added 2023-02-19 244 email_validator = email-validator; # added 2022-06-22 245 enhancements = throw "enhancements is unmaintained upstream and has therefore been removed"; # added 2023-10-27 246 enum-compat = throw "enum-compat is a virtual package providing enum34, which does not do anything since Python 3.4"; # added 2025-02-15 247 enum34 = throw "enum34 is no longer needed since Python 3.4"; # added 2025-03-06 248 eris = throw "eris has been removed due to a hostile upstream moving tags and breaking src FODs"; # Added 2025-09-01 249 et_xmlfile = et-xmlfile; # added 2023-10-16 250 etebase-server = throw "pkgs.python3.etebase-server has been removed, use pkgs.etebase-server"; # added 2024-07-16 251 ev3dev2 = python-ev3dev2; # added 2023-06-19 252 evernote = throw "evernote is intended for use with Python 2.X"; 253 eyeD3 = eyed3; # added 2024-01-03 254 f3d_egl = lib.warnOnInstantiate "'f3d' now build with egl support by default, so `f3d_egl` is deprecated, consider using 'f3d' instead." f3d; # added 2025-07-18 255 Fabric = fabric; # addedd 2023-02-19 256 face_recognition = face-recognition; # added 2022-10-15 257 face_recognition_models = face-recognition-models; # added 2022-10-15 258 factory_boy = factory-boy; # added 2023-10-08 259 fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30 260 farm-haystack = throw "farm-haystack was removed in favor of haystack-ai"; # added 2024-07-03 261 faster-fifo = throw "faster-fifo has been removed since it was an unused leaf package"; # added 2024-07-02 262 fastnlo_toolkit = fastnlo-toolkit; # added 2024-01-03 263 fastpair = throw "fastpair is unmaintained upstream and has therefore been removed"; # added 2024-05-01 264 faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12 265 inherit (super.pkgs) fetchPypi; # added 2023-05-25 266 fenics = throw "fenics has been removed, use fenics-dolfinx instead"; # added 2025-08-07 267 filebrowser_safe = filebrowser-safe; # added 2024-01-03 268 filemagic = throw "inactive since 2014, so use python-magic instead"; # added 2022-11-19 269 filesplit = throw "filesplit has been removed, since it is unmaintained"; # added 2025-08-20 270 flaskbabel = flask-babel; # added 2023-01-19 271 flask-babelex = throw "flask-babelex package has been removed, use flask-babel instead"; # added 2024-10-07 272 flask_assets = flask-assets; # added 2023-08-23 273 flask_elastic = flask-elastic; # added 2023-08-23 274 flask_login = flask-login; # added 2022-10-17 275 flask_mail = flask-mail; # added 2023-08-23 276 flask_marshmallow = flask-marshmallow; # added 2023-08-16 277 flask_migrate = flask-migrate; # added 2023-08-23 278 flask_principal = flask-principal; # added 2023-08-23 279 flask-restplus = throw "flask-restplus is no longer maintained, use flask-restx instead"; # added 2023-02-21 280 flask_script = flask-script; # added 2023-08-23 281 flask-security-too = flask-security; # added 2024-08-26 282 flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20 283 flask_testing = flask-testing; # added 2022-04-25 284 flask_wtf = flask-wtf; # added 2022-05-24 285 flask-autoindex = throw "flask-autoindex was removed, as it is not compatible with flask 3.0 and unmaintained since 2020."; 286 flask-common = throw "flask-common was removed, as it is not compatible with flask 3.0 and unmaintained since 2018."; # added 2025-01-11 287 flask-basicauth = throw "flask-basicauth was removed, as it is not compatible with flask 3.0 and unmaintained since 2016."; 288 flask-sessionstore = throw "flask-sessionstore was removed, as it is not compatible with flask 3.0 and unmaintained since 2017."; 289 flask-silk = throw "flask-silk was removed, as it is unmaintained since 2018."; # added 2025-05-25 290 flask-sockets = throw "flask-sockets has been removed as the upstream repository was archived in 2022"; # Added 2025-01-01 291 flowlogs_reader = flowlogs-reader; # added 2024-01-03 292 flufl_bounce = flufl-bounce; # added 2023-11-03 293 flufl_i18n = flufl-i18n; # added 2023-11-03 294 flufl_lock = flufl-lock; # added 2023-11-03 295 fn = throw "fn was removed as it is no longer used by any package in nixpkgs, it is not compatible with python 3.11 or newer and it was last updated in 2014."; # added 2025-02-08 # added 2024-07-08 296 FormEncode = formencode; # added 2023-02-19 297 foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 298 foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 299 foundationdb60 = throw "foundationdb60 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 300 foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 301 foundationdb71 = throw "foundationdb71 has been removed, use foundationdb73 instead"; # added 2024-12-28 302 functorch = throw "functorch is now part of the torch package and has therefore been removed. See https://github.com/pytorch/functorch/releases/tag/v1.13.0 for more info."; # added 2022-12-01 303 functools32 = throw "functool32 was removed from nixpkgs, because python 2.7 has reach end of life in early 2020"; # added 2024-05-16 304 fritzprofiles = throw "fritzprofiles was removed from nixpkgs, because it was removed as dependency of home-assistant for which it was pacakged."; # added 2024-01-05 305 garages-amsterdam = throw "garages-amsterdam has been renamed odp-amsterdam."; # added 2023-01-04 306 garminconnect-ha = garminconnect; # added 2022-02-05 307 gbulb = throw "gbulb has been removed as it is unmaintained and no longer compatible with PyGObject 3.50."; # added 2024-10-14 308 gcs-oauth2-boto-plugin = throw "gcs-oauth2-boto-plugin was removed as it depends on the removed boto package"; # Added 2024-09-22 309 gdtoolkit = throw "gdtoolkit has been promoted to a top-level attribute name: `pkgs.gdtoolkit`"; # added 2023-02-15 310 geeknote = throw "geeknote depends on the Python2-only library evernote"; # Added 2025-03-22 311 GeoIP = geoip; # added 2023-02-19 312 gigalixir = throw "gigalixir has been promoted to a top-level attribute name: `pkgs.gigalixir`"; # Added 2022-10-02 313 gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14 314 github3_py = github3-py; # added 2024-01-04 315 GitPython = gitpython; # added 2022-10-28 316 glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28 317 glasgow = throw "glasgow has been promoted to a top-level attribute name: `pkgs.glasgow`"; # added 2023-02-05 318 globre = throw "globre was removed, because it was disabled on all python version since 3.7 and last updated in 2020."; # added 2024-05-13 319 goobook = throw "goobook has been promoted to a top-level attribute name: `pkgs.goobook`"; # Added 2025-03-25 320 google-reauth = throw "google-reauth has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04 321 google_api_python_client = google-api-python-client; # added 2021-03-19 322 googleapis_common_protos = googleapis-common-protos; # added 2021-03-19 323 google-apitools = throw "google-apitools was removed because it is deprecated and unsupported by upstream"; # added 2023-02-25 324 gpyopt = throw "gpyopt was remove because it's been archived upstream"; # added 2023-06-07 325 gradient_statsd = gradient-statsd; # added 2024-01-06 326 graphite_api = throw "graphite_api was removed, because it is no longer maintained"; # added 2022-07-10 327 graphite_beacon = throw "graphite_beacon was removed, because it is no longer maintained"; # added 2022-07-09 328 grappelli_safe = grappelli-safe; # added 2023-10-08 329 groestlcoin_hash = groestlcoin-hash; # added 2024-01-06 330 grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21 331 inherit (pkgs) gtimelog; 332 guzzle_sphinx_theme = guzzle-sphinx-theme; # added 2023-10-16 333 ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06 334 HAP-python = hap-python; # added 2021-06-01 335 hahomematic = throw "hahomematic has been superseded by aiohomematic"; # added 2025-08-16 336 hangups = throw "hangups was removed because Google Hangouts has been shut down"; # added 2023-02-13 337 hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07 338 hcs_utils = hcs-utils; # added 2024-01-06 339 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 340 heif-image-plugin = throw "heif-image-plugin has been removed due to lack of upstream maintenance and breakage. Use `pillow-heif` instead."; # added 2025-09-17 341 hglib = python-hglib; # added 2023-10-13 342 hijri-converter = hijridate; # added 2025-08-07 343 hkdf = throw "hkdf has been removed, as it is no longer maintained upstream."; # added 2024-10-04 344 homeassistant-bring-api = bring-api; # added 2024-04-11 345 homeassistant-pyozw = throw "homeassistant-pyozw has been removed, as it was packaged for home-assistant which has removed it as a dependency."; # added 2024-01-05 346 htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04 347 HTSeq = htseq; # added 2023-02-19 348 hug = throw "hug was marked broken since 2021 and has not established compatibility with newer dependency versions. It has therefore been removed."; # added 2024-11-15 349 huisbaasje-client = throw "huisbaasje-client has been removed because it was replaced with energyflip-client"; # added 2025-05-12 350 hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29 351 hydra-check = throw "The Python package hydra-check was removed in favor of the top-level rust based pkgs.hydra-check"; # added 2022-04-29 352 ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08 353 IMAPClient = imapclient; # added 2021-10-28 354 imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08 355 image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10 356 imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10 357 imgtool = throw "imgtool has been promoted to a top-level attribute name: `mcuboot-imgtool`"; # added 2024-10-09 358 intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11 359 ionhash = throw "ionhash has been removed due to being unmaintained upstream"; # added 2025-07-30 360 iotawattpy = ha-iotawattpy; # added 2025-07-06 361 ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30 362 ipdbplugin = throw "ipdbplugin has been removed because it has no longer maintained for 6 years"; # added 2024-05-21 363 ipython_genutils = ipython-genutils; # added 2023-10-12 364 influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10 365 inlinestyler = throw "inlinestyler has been removed because it is no longer maintained"; # added 2025-08-09 366 itanium_demangler = itanium-demangler; # added 2022-10-17 367 jaeger-client = throw "jaeger-client was removed because it is deprecated upstream. OpenTelemetry is recommended instead."; # Added 2024-12-09 368 jaraco_classes = jaraco-classes; # added 2023-07-14 369 jaraco_collections = jaraco-collections; # added 2023-07-14 370 jaraco_functools = jaraco-functools; # added 2023-07-14 371 jaraco_itertools = jaraco-itertools; # added 2023-07-14 372 jaraco_logging = jaraco-logging; # added 2023-07-14 373 jaraco_text = jaraco-text; # added 2023-07-14 374 jaraco_stream = jaraco-stream; # added 2023-07-14 375 JayDeBeApi = jaydebeapi; # added 2023-02-19 376 jinja2_pluralize = jinja2-pluralize; # added 2023-11-01 377 jinja2_time = jinja2-time; # added 2022-11-07 378 JPype1 = jpype1; # added 2023-02-19 379 js2py = throw "js2py has been removed, as it is unmaintained and insecure"; # added 2024-10-17 380 jsonpath_rw = jsonpath-rw; # added 2024-01-06 381 jsonschema_3 = throw "jsonschema 3 is neither the latest version nor needed inside nixpkgs anymore"; # added 2023-06-28 382 jupyter_client = jupyter-client; # added 2021-10-15 383 jupyter_console = jupyter-console; # added 2023-07-31 384 jupyter-contrib-nbextensions = throw "jupyter-contrib-nbextensions has been removed, as it does not work with Jupyter Notebook 7"; # added 2024-09-22 385 jupyter_core = jupyter-core; # added 2023-01-05 386 jupyter_server = jupyter-server; # added 2023-01-05 387 jupyter-server-ydoc = jupyter-collaboration; # added 2023-07-18 388 jupyterlab_launcher = throw "jupyterlab_launcher has been removed as it's abandoned for over 5 years and broken"; # added 2023-11-11 389 jupyterlab_server = jupyterlab-server; # added 2023-11-12 390 kafka-python = kafka-python-ng; # added 2024-07-19 391 Kajiki = kajiki; # added 2023-02-19 392 keepkey_agent = keepkey-agent; # added 2024-01-06 393 Keras = keras; # added 2021-11-25 394 keras-applications = throw "keras-applications has been removed because it's abandoned since 2022"; # added 2025-01-12 395 keras-preprocessing = throw "keras-preprocessing has been removed because it's abandoned since 2024"; # added 2025-01-12 396 keyring_24 = throw "keyring_24 has been removed, use keyring instead"; # added 2025-01-01 397 kivy-garden-modernmenu = throw "kivy-garden-modernmenu has been removed as it's abandoned since 2019"; # added 2505-05-25 398 ldap = python-ldap; # added 2022-09-16 399 lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04 400 langchain-standard-tests = langchain-tests; # added 2025-01-22 401 langchainplus-sdk = langsmith; # added 2023-08-01 402 langgraph-checkpoint-duckdb = throw "langgraph-checkpoint-duckdb has been removed as of langgraph 0.2.63"; # added 2025-04-04 403 lazr_config = lazr-config; # added 2023-11-03 404 lazr_delegates = lazr-delegates; # added 2023-11-03 405 lazy_import = lazy-import; # added 2024-01-07 406 lazy-import = throw "lazy-import has been removed because it was unused."; # added 2024-05-20 407 lazy_imports = lazy-imports; # added 2023-10-13 408 ledger_agent = ledger-agent; # Added 2024-01-07 409 lektor = throw "lektor has been promoted to a top-level attribute name: `pkgs.lektor`"; # added 2023-08-01 410 libgpuarray = throw "libgpuarray has been removed, as it was unmaintained."; # added 2024-08-03 411 libpyfoscam = throw "libpyfoscam was removed because Home Assistant switched to libpyfoscamcgi"; # added 2025-07-03 412 line_profiler = line-profiler; # added 2023-11-04 413 linear_operator = linear-operator; # added 2024-01-07 414 livestreamer = throw "'livestreamer' has been removed, as it unmaintained. A currently maintained fork is 'streamlink'."; # added 2023-11-14 415 livestreamer-curses = throw "'livestreamer-curses' has been removed as it, and livestreamer itself are unmaintained."; # added 2023-11-14 416 lmcloud = pylamarzocco; # added 2024-11-26 417 localstack = throw "localstack was promoted to a top-level attribute"; # added 2025-02-21 418 logi-circle = throw "logi-circle has been removed because the logi_circle integration was removed from Home Assistant"; # added 2025-05-13 419 logilab_astng = throw "logilab-astng has not been released since 2013 and is unmaintained"; # added 2022-11-29 420 logilab_common = logilab-common; # added 2022-11-21 421 loo-py = loopy; # added 2022-05-03 422 ludios_wpull = throw "ludios_wpull has been removed because it's unmaintained and broken"; # added 2023-11-12 423 luxor = throw "luxor has been removed because it is unmaintained and broken"; # added 2025-01-25 424 lcov_cobertura = lcov-cobertura; # added 2024-01-07 425 Mako = mako; # added 2023-02-19 426 Markups = markups; # added 2022-02-14 427 markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10 428 mask-rcnn = throw "mask-rcnn has been removed as it is unmaintained and its dependency imgaug no longer builds"; # added 2023-07-10 429 mac_alias = mac-alias; # added 2024-01-07 430 MDP = mdp; # added 2023-02-19 431 mdp = throw "mdp has been removed as it is unmaintained and broken"; # added 2024-11-23 432 MechanicalSoup = mechanicalsoup; # added 2021-06-01 433 memcached = python-memcached; # added 2022-05-06 434 mailman = throw "Please use pkgs.mailman"; # added 2022-04-29 435 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29 436 mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29 437 manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20 438 mapbox = throw "mapbox has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04 439 marshmallow-enum = throw "marshmallow-enum has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10 440 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 441 mathlibtools = throw "mathlibtools has been removed because the upstream repository was archived in 2023"; # added 2025-07-09 442 matrix-api-async = throw "matrix-api-async has been removed as it is an old wrapper and no longer in use"; # added 2025-01-01 443 memory_profiler = memory-profiler; # added 2023-10-09 444 mir_eval = mir-eval; # added 2024-01-07 445 mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12 446 mistune_2_0 = mistune; # added 2022-08-12 447 mitmproxy-wireguard = throw "mitmproxy-wireguard has been removed because it was replaced by upstream with mitmproxy-rs"; # added 2023-11-06 448 mkdocs-awesome-pages-plugin = mkdocs-awesome-nav; # added 2025-03-10 449 mkdocs-macros = mkdocs-macros-plugin; # added 2025-09-02 450 mkdocs-minify = mkdocs-minify-plugin; # added 2023-11-28 451 mne-python = mne; # added 2025-05-02 452 modestmaps = throw "modestmaps is unmaintained and was never enabled for anything except Python27"; # Added 2025-03-23 453 mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21 454 mox3 = throw "mox3 was removed because it is unmaintained"; # added 2024-08-30 455 mrkd = throw "mrkd has been promoted to a top-level attribute name: `pkgs.mrkd`"; # added 2023-08-01 456 multi_key_dict = multi-key-dict; # added 2023-11-05 457 mutag = throw "mutag has been removed because it is unmaintained since 2018"; # added 2025-05-25 458 mutmut = throw "mutmut has been promoted to a top-level attribute name: `pkgs.mutmut`"; # added 2022-10-02 459 n3fit = throw "n3fit has been removed since it relies on a dependency that was removed"; # added 2024-08-24 460 nbmerge = throw "nbmerge has moved to pkgs.nbmerge"; # added 2024-07-05 461 mypy-boto3-alexaforbusiness = throw "mypy-boto3-alexaforbusiness was removed because it is unmaintained"; # added 2024-09-04 462 mypy-boto3-backupstorage = throw "mypy-boto3-backupstorage was removed because it is unmaintained"; # added 2024-09-04 463 mypy-boto3-gamesparks = throw "mypy-boto3-gamesparks was removed because it is unmaintained"; # added 2024-09-04 464 mypy-boto3-honeycode = throw "mypy-boto3-honeycode was removed because it is unmaintained"; # added 2024-09-04 465 mypy-boto3-iot-roborunner = throw "mypy-boto3-iot-roborunner was removed because it is unmaintained"; # added 2024-09-04 466 mypy-boto3-macie = throw "mypy-boto3-macie was removed because it is unmaintained"; # added 2024-09-04 467 mypy-boto3-mobile = throw "mypy-boto3-mobile was removed because it is unmaintained"; # added 2024-09-04 468 net2grid = gridnet; # add 2022-04-22 469 nghttp2 = throw "in 1.52.0 removed deprecated python bindings."; # added 2023-06-08 470 nitpick = throw "'nitpick' has been removed because it was unmaintained upstream since 2017 and using python2"; # added 2025-08-25 471 niko-home-control = throw "niko-home-control was removed because Home Assistant switched to nhc"; # added 2025-01-09 472 ninja-python = ninja; # add 2022-08-03 473 nixpkgs = throw "nixpkgs has been removed as its dependency pythonix was removed"; # added 2025-07-24 474 nose = throw "nose has been removed since it has been deprecated and unmaintained for almost a decade and does not work on Python 3.12; please switch to pytest or another test runner/framework"; # added 2024-07-28 475 nose3 = throw "nose3 has been removed since it is unmaintained and does not work with Python 3.12"; # added 2024-07-28 476 nosejs = throw "nosejs has been removed since it has not been maintained for 15 years and there are no dependent packages"; # added 2024-05-21 477 nose-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21 478 nosexcover = throw "nosexcover has been removed since it has not been maintained and there are no dependent packages"; # added 2024-05-21 479 nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16 480 nose-cprof = throw "nose-cprof has been removed since it has not been maintained for 7 years and there are no dependent packages"; # added 2024-05-21 481 nose-exclude = throw "nose-exclude has been removed since it has not been maintained since 2016"; # added 2024-05-21 482 nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22 483 nose-pattern-exclude = throw "nose-pattern-exclude has been removed as it has been unmaintained since 2014"; # added 2024-07-27 484 nose_progressive = throw "nose_progressive has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-02-21 485 nose-timer = throw "nose-timer has been removed as it depends on the abandoned nose test framework"; # added 2024-07-27 486 nose-warnings-filters = throw "nose-warnings-filters has been removed as it has been unmaintained since 2016"; # added 2024-07-27 487 nose_warnings_filters = nose-warnings-filters; # added 2024-01-07 488 nose-xunitmp = throw "nose-xunitmp has been removed as it depends on the abandoned nose test framework"; # added 2024-07-29 489 notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02 490 Nuitka = nuitka; # added 2023-02-19 491 ntlm-auth = throw "ntlm-auth has been removed, because it relies on the md4 implementation provided by openssl. Use pyspnego instead."; 492 oauth = throw "oauth has been removed as it is unmaintained"; # added 2025-05-16 493 oauth2 = throw "oauth2 has been removed as it is unmaintained"; # added 2025-05-16 494 openai-triton = triton; # added 2024-07-18 495 openai-triton-bin = triton-bin; # added 2024-07-18 496 openai-triton-cuda = triton-cuda; # added 2024-07-18 497 openai-triton-no-cuda = triton-no-cuda; # added 2024-07-18 498 openapi-schema-pydantic = throw "openapi-schema-pydantic has been removed, since it is no longer maintained"; # added 2023-10-30 499 openbabel-bindings = openbabel; # added 2025-09-17 500 opencv3 = throw "opencv3 has been removed as it is obsolete"; # added 2023-10-12 501 openllm = throw "openllm has moved to pkgs.openllm"; # added 2021-12-31 502 openllm-client = throw "openllm-client has been removed, since it is abandoned due to a change in philosophy"; # added 2024-08-24 503 openllm-core = throw "openllm-core has been removed, since it is abandoned due to a change in philosophy"; # added 2024-08-24 504 opsdroid_get_image_size = opsdroid-get-image-size; # added 2023-10-16 505 opentracing = throw "The opentracing Python module was removed due to being unmaintained upstream. Use OpenTelemetry instead."; # Added 2024-12-09 506 ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28 507 orm = throw "orm has been removed as it is unmaintained"; # added 2025-08-27 508 pafy = throw "pafy has been removed because it is unmaintained and only a dependency of mps-youtube, itself superseded by yewtube"; # Added 2023-01-19 509 paho-mqtt_1 = throw "paho-mqtt_1 was removed because no package depends on it anymore"; # added 2025-03-05 510 paho-mqtt_2 = paho-mqtt; # added 2025-03-05 511 pam = python-pam; # added 2020-09-07. 512 PasteDeploy = pastedeploy; # added 2021-10-07 513 pathlib = throw "pathlib was removed as it has been integrated in python standard library in version 3.4"; # added 2024-05-13 514 pathpy = path; # added 2022-04-12 515 pcbnew-transition = pcbnewtransition; # added 2024-03-21 516 pc-ble-driver-py = throw "pc-ble-driver-py has been removed because the upstream repository was archived in 2024"; # Added 2024-10-04 517 pdfposter = throw "pdfposter was promoted to a top-level attribute"; # Added 2023-06-29 518 pdfminer = pdfminer-six; # added 2022-05-25 519 pdfx = throw "pdfx has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04 520 pep257 = pydocstyle; # added 2022-04-12 521 percol = throw "percol has been removed because it hasn't been updated since 2019"; # added 2025-05-25 522 pillow-simd = throw "pillow-simd has been removed for lagging behind pillow upstream, which exposes it to various security issues."; # Added 2024-10-24 523 pipenv-poetry-migrate = throw "pipenv-poetry-migrate was promoted to a top-level attribute"; # added 2025-01-14 524 pixelmatch = "pixelmatch has been removed as it was unmaintained"; # Added 2024-08-18 525 pkutils = throw "pkutils was removed as it was unused and is not applicable to modern Python build tools"; # added 2024-07-28 526 poetry = throw "poetry was promoted to a top-level attribute, use poetry-core to build Python packages"; # added 2023-01-09 527 poetry2conda = throw "poetry2conda was promoted to a top-level attribute"; # Added 2022-10-02 528 Polygon3 = polygon3; # Added 2023-08-08 529 posix_ipc = posix-ipc; # added 2024-01-07 530 poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29 531 postgrest-py = postgrest; # added 2024-08-29 532 postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29 533 powerlineMemSegment = powerline-mem-segment; # added 2021-10-08 534 prayer-times-calculator = prayer-times-calculator-offline; # added 2024-08-11 535 premailer = throw "premailer was removed, as it is not compatible with lxml>4.9.4."; 536 privacyidea-ldap-proxy = throw "privacyidea-ldap-proxy has been removed from nixpkgs"; # added 2023-10-31 537 proboscis = throw "proboscis has been removed since it has not been maintained for 11 years"; # added 2024-05-20 538 prometheus_client = prometheus-client; # added 2021-06-10 539 prompt_toolkit = prompt-toolkit; # added 2021-07-22 540 protonup = protonup-ng; # Added 2022-11-06 541 proton-keyring-linux-secretservice = throw "proton-keyring-linux-secretservice functionality was integrated in the proton-keyring-linux module"; # added 2024-10-16 542 proton-vpn-connection = throw "proton-vpn-connection functionality was integrated in the proton-vpn-api-core module"; # added 2024-10-16 543 proton-vpn-killswitch = throw "proton-vpn-killswitch functionality was integrated in the proton-vpn-api-core module"; # added 2024-10-16 544 proton-vpn-killswitch-network-manager = throw "proton-vpn-killswitch-network-manager functionality was integrated in the proton-vpn-network-manager module"; # added 2024-10-16 545 proton-vpn-killswitch-network-manager-wireguard = throw "proton-vpn-killswitch-network-manager-wireguard functionality was integrated in the proton-vpn-network-manager module"; # added 2024-10-16 546 proton-vpn-logger = throw "proton-vpn-logger functionality was integrated in the proton-vpn-api-core module"; # added 2024-10-16 547 proton-vpn-network-manager-openvpn = throw "proton-vpn-network-manager-openvpn functionality was integrated in the proton-vpn-network-manager module"; # added 2024-10-16 548 proton-vpn-network-manager-wireguard = throw "proton-vpn-network-manager-wireguard functionality was integrated in the proton-vpn-network-manager module"; # added 2024-10-16 549 proton-vpn-session = throw "proton-vpn-session functionality was integrated in the proton-vpn-api-core module"; # added 2024-10-16 550 proxy_tools = proxy-tools; # added 2023-11-05 551 ptable = throw "ptable has been removed, as it is unmaintained and broken"; # added 2025-05-25 552 pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08 553 pushbullet = pushbullet-py; # Added 2022-10-15 554 push-receiver = throw "push-receiver has been removed since it is unmaintained for 3 years"; # added 2025-05-17 555 Pweave = pweave; # added 2023-02-19 556 pwndbg = throw "'pwndbg' has been removed due to dependency version incompatibilities that are infeasible to maintain in nixpkgs. Use the downstream flake that pwndbg provides instead: https://github.com/pwndbg/pwndbg"; # Added 2025-02-09 557 pxml = throw "pxml was removed, because it was disabled on all python version since 3.8 and last updated in 2020."; # added 2024-05-13 558 py3to2 = throw "py3to2 is unmaintained and source is no longer available"; # added 2024-10-23 559 pypcap = throw "pypcap has been removed because it is broken and unmaintained upstream."; # added 2025-06-18 560 pytedee-async = aiotedee; # added 2025-07-06 561 pytricia = throw "pytricia has been removed, since it is unmaintained"; # added 2025-05-25 562 py-radix = throw "py-radix has been removed, since it abandoned"; # added 2023-07-07 563 py_stringmatching = py-stringmatching; # added 2023-11-12 564 py17track = throw "py17track was removed because Home Assistant switched to pyseventeentrack"; # added 2024-08-08 565 pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02 566 pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23 567 pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20 568 pychart = throw "pychart does not support Python3"; # added 2025-03-23 569 pycontracts = throw "pycontracts has been removed, since upstream is no longer active and it is broken on modern Python versions."; # added 2024-08-09 570 pydns = py3dns; # added 2024-10-25 571 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 572 pyechonest = throw "pyechonest was removed because it was broken and unmaintained"; # added 2025-08-26 573 pyephember = throw "pyephember was removed because Home Assistant switched to pyephember2"; # added 2025-05-07 574 pyezviz = throw "pyeziz has been removed in favor of pyevizapi, where development continues"; # added 2025-06-11 575 pyjet = throw "pyjet is deprecated, use fastjet instead"; # added 2023-05-10 576 pygame_sdl2 = pygame-sdl2; # added 2024-01-07 577 pygogo = throw "pygogo has been removed, since it is abandoned and had no maintainer"; # added 2024-07-27 578 pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20 579 PyGithub = pygithub; # added 2023-02-19 580 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15 581 pyheif = throw "pyheif has been removed due to lack of upstream maintenance and breakage. Use `pillow-heif` instead."; # added 2025-09-17 582 pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 583 pychef = throw "pychef has been removed because it's been archived upstream and abandoned since 2017."; # added 2022-11-14 584 PyChromecast = pychromecast; # added 2023-02-19 585 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 586 pyfantom = throw "pyfantom has been removed because it does not work with python3 and has not been updated for 12 years"; # added 2025-03-25 587 pyfftw = throw "pyfftw has been removed because it is unmaintained and broken."; # Added 2024-06-17 588 pyflunearyou = pyoutbreaksnearme; # added 2023-02-11 589 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 590 pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07 591 PyICU = pyicu; # Added 2022-12-22 592 pyhiveapi = pyhive-integration; # Added 2025-02-22 593 pyhs100 = throw "pyhs100 has been removed in favor of python-kasa."; # added 2024-01-05 594 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 595 pyliblo = throw "pyliblo is unmaintained upstream and was removed from nixpkgs. Please use pyliblo3 instead"; # added 2025-06-23 596 PyLD = pyld; # added 2022-06-22 597 pylti = throw "pylti has been removed because it is unmaintained since 2019"; # added 2024-05-21 598 pymaging = throw "pymaging has been removed because it has not been maintained for 10 years and has been archived."; # added 2023-11-04 599 pymaging_png = throw "pymaging_png has been removed because it has not been maintained for 10 years and has been archived."; # added 2023-11-04 600 pymatgen-lammps = throw "pymatgen-lammps has been removed because it is unmaintained and broken"; # added 2023-06-20 601 pymazda = throw "pymazda has been removed, because the upstream repo has been affected by a DCMA claim."; # added 2023-10-16 602 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0 603 pymelcloud = python-melcloud; # added 2025-05-08 604 pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04 605 PyMVGLive = pymvglive; # added 2023-02-19 606 pymyq = python-myq; # added 2023-10-20 607 pynose = throw "pynose was removed, because it violates the license of nose, by redistributing modified LGPL code under MIT."; 608 python-ethtool = ethtool; # added 2024-07-23 609 python-myq = throw "python-myq has been removed, as the service provider has decided to block its API requests"; # added 2023-12-07 610 python-picnic-api = throw "python-picnic-api was removed because Home Assistant switched to python-picnic-api2"; # added 2025-03-05 611 python-unshare = throw "python-unshare was removed as unmaintained since 2016"; # added 2025-05-25 612 pythonix = throw "pythonix was removed as it was unmaintained since 2022"; # added 2025-07-24 613 pytrends = throw "pytrends has been removed, as it no longer works and is abandoned upstream"; # added 2025-02-02 614 pyqldb = throw "pyqldb has been removed, because the underlying service is reaching end of support"; # added 2025-07-30 615 pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09 616 pyqt5_sip = pyqt5-sip; # added 2024-01-07 617 pyqt5_with_qtmultimedia = pyqt5-multimedia; # added 2024-01-07 618 pyqt5_with_qtwebkit = pyqt5-webkit; # added 2024-01-07 619 pyramid_beaker = pyramid-beaker; # added 2023-08-23 620 pyramid_chameleon = pyramid-chameleon; # added 2023-08-23 621 pyramid_exclog = pyramid-exclog; # added 2023-08-24 622 pyramid_hawkauth = throw "pyramid_hawkauth has been removed because it is no longer maintained"; # added 2023-02-2 623 pyramid_jinja2 = pyramid-jinja2; # added 2023-06-06 624 pyramid_mako = pyramid-mako; # added 2023-08-24 625 pyramid_multiauth = pyramid-multiauth; # added 2023-08-24 626 pyreadability = readability-lxml; # added 2022-05-24 627 pyres = throw "pyres has been removed, since it is abandoned and broken"; # added 2023-06-20 628 pygeoip = throw "pygeoip has been removed, since it wash archived in April 2018"; # added 2024-07-27 629 pygeos = throw "pygeos has been removed, since it was merged with shapely 2.0"; # added 2024-05-26 630 pyreqwest-impersonate = throw "pyreqwest has been renamed to primp"; # added 2024-10-22 631 pyRFC3339 = pyrfc3339; # added 2024-01-07 632 pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 633 pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 634 pyroute2-ipdb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 635 pyroute2-ipset = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 636 pyroute2-ndb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 637 pyroute2-nftables = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 638 pyroute2-nslink = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 639 pyroute2-protocols = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16 640 Pyro4 = pyro4; # added 2023-02-19 641 Pyro5 = pyro5; # added 2023-02-19 642 PyRSS2Gen = pyrss2gen; # added 2023-02-19 643 pyruckus = throw "pyruckus has been removed, it was deprecrated in favor of aioruckus."; # added 2023-09-07 644 py-scrypt = scrypt; # added 2025-08-07 645 pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20 646 pysimplegui = throw "pysimplegui update to v5 broke the package, it now needs a license key to decrypt the source code"; # added 2024-09-16 647 pyside6-fluent-widgets = throw "pyside6-fluent-widgets has been removed, since it is unmaintained"; # added 2025-08-20 648 pysidesix-frameless-window = throw "pysidesix-frameless-window has been removed, since it is unmaintained"; # added 2025-08-20 649 pysmart-smartx = pysmart; # added 2021-10-22 650 pySmartDL = pysmartdl; # added 2023-10-11 651 pysmi-lextudio = pysmi; # added 2024-07-18 652 pysnmp-lextudio = pysnmp; # added 2024-07-18 653 pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28 654 pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 655 PyStemmer = pystemmer; # added 2023-02-19 656 pysuez = pysuezv2; # added 2025-03-14 657 pytado = python-tado; # added 2024-12-02 658 pytest_6 = pytest; # added 2022-02-10 659 pytestcov = pytest-cov; # added 2021-01-04 660 pytest-ordering = throw "pytest-ordering has been removed, since it is no longer maintained and broken"; # added 2023-06-22 661 pytest-openfiles = throw "pytest-openfiles has been removed, since it is unmaintained and archived"; # added 2024-06-19 662 pytest-pep8 = pytestpep8; # added 2021-01-04 663 pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12 664 pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09 665 pytest-runner = throw "pytest-runner has been removed as it uses deprecated features of setuptools and is deprecated by upstream"; # added 2024-09-15 666 pytest-sanic = throw "pytest-sanic has been removed because it is unmaintained and broken"; # added 2023-06-22 667 pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 668 pytestquickcheck = pytest-quickcheck; # added 2021-07-20 669 pytestrunner = pytest-runner; # added 2021-01-04 670 python-forecastio = throw "python-forecastio has been removed, as the Dark Sky service was shut down."; # added 2023-04-05 671 python-igraph = igraph; # added 2021-11-11 672 python_openzwave = python-openzwave; # added 2024-01-07 673 python-openzwave-mqtt = throw "python-openzwave was removed, as it was packaged as a dependency of home-assistant, which it is no longer."; # added 2024-01-05 674 python_docs_theme = python-docs-theme; # added 2023-11-04 675 python_fedora = python-fedora; # added 2023-11-15 676 python_keyczar = throw "python_keyczar has been removed because it's been archived upstream and deprecated"; # added 2023-05-16 677 python-lz4 = lz4; # added 2018-06-01 678 python_magic = python-magic; # added 2022-05-07 679 python_mimeparse = python-mimeparse; # added 2021-10-31 680 python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03 681 python-Levenshtein = levenshtein; 682 python-pushover = throw "python-pushover has been removed, since it is unmaintained and is broken"; # added 2023-07-03 683 python-simple-hipchat = throw "'python-simple-hipchat' has been removed because it was broken and unmaintained"; # added 2025-08-26 684 python-subunit = subunit; # added 2021-09-10 685 python-wifi = throw "python-wifi does not support Python3"; 686 pytest_xdist = pytest-xdist; # added 2021-01-04 687 python_simple_hipchat = python-simple-hipchat; # added 2021-07-21 688 pytoml = throw "pytoml has been removed because it is unmaintained and is superseded by toml"; # Added 2023-04-11 689 pytorch = torch; # added 2022-09-30 690 pytorch-bin = torch-bin; # added 2022-09-30 691 pytorchWithCuda = torchWithCuda; # added 2022-09-30 692 pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30 693 pytwitchapi = twitchapi; # added 2022-03-07 694 pytzdata = throw "pytzdata has been removed, because iit is unmaintained upstream. Use pytz or tzdata instead."; # added 2025-03-03 695 pyuavcan = throw "pyuavcan has been renamed to pycyphal and the old package deprecated, use pycyphal instead"; # added 2024-02-09 696 pyunifiprotect = throw "pyunifiprotect has disappeared from GitHub and PyPI, use uiprotect instead"; # added 2024-09-17 697 pyutilib = throw "pyutilib has been removed, since it is no longer maintained"; # added 2024-07-28 698 pyvicare-neo = pyvicare; # Added 2024-11-06 699 pyvcf = throw "pyvcf has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-05-19 700 PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19 701 pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01 702 pyxb = throw "pyxb has been removed, its last release was in 2017 and it has finally been archived in April 2023."; # added 2024-01-05 703 pyzufall = throw "pyzufall was removed, because it is no longer maintained"; # added 2024-05-14 704 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09 705 qds-sdk = throw "qds-sdk was removed as it is unmaintained upstream and depends on the removed boto package"; # Added 2024-09-22 706 qds_sdk = qds-sdk; # added 2023-10-21 707 qmk-dotty-dict = throw "qmk-dotty-dict has been removed. It is no longer needed since the fixes have been merged into dotty-dict."; # added 2025-01-01 708 Quandl = quandl; # added 2023-02-19 709 quamash = throw "'quamash' has been removed, since it is unmaintained and broken"; # added 2024-10-17 710 querystring_parser = querystring-parser; # added 2024-01-07 711 qcodes-loop = throw "qcodes-loop has been removed due to deprecation"; # added 2023-11-30 712 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; 713 rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01 714 radian = throw "radian has been promoted to a top-level attribute name: `pkgs.radian`"; # added 2025-05-02 715 radicale_infcloud = radicale-infcloud; # added 2024-01-07 716 radio_beam = radio-beam; # added 2023-11-04 717 ratelimiter = throw "ratelimiter has been removed, since it is unmaintained and broken"; # added 2023-10-21 718 rauth = throw "rauth has beed removed, since it is unmaintained upstream"; # added 2024-07-27 719 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05 720 readme_renderer = readme-renderer; # added 2024-01-07 721 recaptcha_client = throw "recaptcha_client has been removed since it is no longer maintained"; # added 2023-10-20 722 recursivePthLoader = recursive-pth-loader; # added 2024-01-07 723 rednose = throw "rednose is no longer maintained (since February 2018)"; # added 2023-08-06 724 repeated_test = repeated-test; # added 2022-11-15 725 repocheck = throw "repocheck has been promoted to a top-level attribute name: `pkgs.repocheck`"; # Added 2024-11-03 726 reportengine = throw "reportengine has been removed, since it is unmaintained and broken"; # added 2024-08-21 727 repoze_lru = repoze-lru; # added 2023-11-11 728 repoze_sphinx_autointerface = repoze-sphinx-autointerface; # added 2023-11-11 729 repoze_who = repoze-who; # added 2023-11-11 730 requests_download = requests-download; # added 2024-01-07 731 requests_ntlm = requests-ntlm; # added 2024-01-07 732 requests_oauthlib = requests-oauthlib; # added 2022-02-12 733 requests_toolbelt = requests-toolbelt; # added 2017-09-26 734 restructuredtext_lint = restructuredtext-lint; # added 2023-11-04 735 retry_decorator = retry-decorator; # added 2024-01-07 736 retworkx = rustworkx; # added 2023-05-14 737 rig = throw "rig has been removed because it was pinned to python 2.7 and 3.5, failed to build and is otherwise unmaintained"; # added 2022-11-28 738 rising = throw "rising has been removed because it was abandoned and archived by upstream"; # added 2024-11-15 739 rki-covid-parser = throw "rki-covid-parser has been removed because it is unmaintained and broken"; # added 2025-09-20 740 rl-coach = "rl-coach was removed because the project is discontinued and was archived by upstream"; # added 2023-05-03 741 roboschool = throw "roboschool is deprecated in favor of PyBullet and has been removed"; # added 2022-01-15 742 ronin = throw "ronin has been removed because it was unmaintained since 2018"; # added 2024-08-21 743 ROPGadget = ropgadget; # added 2021-07-06 744 rotate-backups = throw "rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01 745 rtslib = rtslib-fb; # added 2025-03-14 746 rtsp-to-webrtc = throw "rtsp-to-webrtc has been removed because it is unmaintained"; # added 2025-09-20 747 ruamel_base = ruamel-base; # added 2021-11-01 748 ruamel_yaml = ruamel-yaml; # added 2021-11-01 749 ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01 750 ruff-lsp = throw "ruff-lsp has been deprecated, use `ruff server` instead"; # added 2025-04-21 751 runway-python = throw "SDK has been deprecated and was archived by upstream"; # added 2023-05-03 752 safe = throw "safe has been removed, it was unmaintained sinced October 2019"; # added 2024-07-28 753 sabyenc = throw "sabyenc has been removed, due to no updates since June 2019 and being superseded by sabyenc3"; # added 2025-05-03 754 sampledata = throw "sampledata has been removed, it was unmaintained since 2017"; # added 2024-07-27 755 sapi-python-client = kbcstorage; # added 2022-04-20 756 scikitimage = scikit-image; # added 2023-05-14 757 scikitlearn = scikit-learn; # added 2021-07-21 758 scikit-optimize = throw "scikit-optimize has been removed because it is abandoned"; # added 2024-09-30 759 scikits-samplerate = throw "scikits-samplerate has been removed, it was unsed and unmaintained since 2015"; # added 2024-05-23 760 seaserv = throw "seaserv has been removed as it is unmaintained"; # Added 2025-08-21 761 selectors2 = throw "selectors2 has been removed: archived by upstream."; # added 2024-07-27 762 selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10 763 sentry-sdk_2 = sentry-sdk; # added 2025-04-20 764 sequoia = throw "python3Packages.sequoia was replaced by pysequoia - built from a dedicated repository, with a new API."; # added 2023-06-24 765 setuptools_dso = setuptools-dso; # added 2024-03-03 766 setuptools_scm = setuptools-scm; # added 2021-06-03 767 setuptoolsCheckHook = throw "The setuptoolsCheckHook has been removed, since the test command has been removed in setuptools 72.0."; # added 2024-08-06 768 setuptoolsTrial = setuptools-trial; # added 2023-11-11 769 sharkiqpy = sharkiq; # added 2022-05-21 770 shippai = throw "shippai has been removed because the upstream repository was archived in 2023"; # added 2025-07-09 771 shouldbe = throw "shouldbe was removed, because it was disabled on all python version since 3.8 and last updated in 2019."; # added 2024-05-12 772 sip_4 = sip4; # added 2024-01-07 773 slackclient = slack-sdk; # added 2024-06-27 774 slimit = throw "slimit was removed, because it was an unused and broken leaf package last updated in 2018."; # added 2025-05-17 775 ssh-mitm = throw "ssh-mitm was removed in favor of the top-level ssh-mitm"; # added 2023-05-09 776 smart_open = smart-open; # added 2021-03-14 777 smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14 778 smpp_pdu = smpp-pdu; # added 2024-03-05 779 somecomfort = throw "somecomfort was removed because Home Assistant switched to aiosomecomfort"; # added 2023-02-01 780 sonarr = throw "sonarr has been deprecated and removed"; # added 2025-01-13 781 solaredge = throw "solaredge was removed because Home Assistant switched to aiosolaredge"; # added 2024-07-15 782 sorl_thumbnail = sorl-thumbnail; # added 2023-11-12 783 spacy_models = spacy-models; # added 2024-04-21 784 SPARQLWrapper = sparqlwrapper; 785 spark_parser = spark-parser; # added 2024-01-07 786 sparsezoo = throw "sparsezoo has been removed since it is abandonned"; # added 2025-09-01 787 sphinx-jquery = sphinxcontrib-jquery; # added 2023-02-24 788 sphinx_pypi_upload = throw "sphinx_pypi_upload has been removed since it is abandoned."; # added 2023-10-11 789 sphinx_rtd_theme = sphinx-rtd-theme; # added 2022-08-03 790 sphinxcontrib-autoapi = sphinx-autoapi; # added 2023-02-28 791 sphinxcontrib_httpdomain = sphinxcontrib-httpdomain; # added 2023-07-20 792 sphinxcontrib_newsfeed = sphinxcontrib-newsfeed; # added 2023-07-20 793 sphinxcontrib_plantuml = sphinxcontrib-plantuml; # added 2021-08-02 794 sphinx-navtree = throw "sphinx-navtree has been removed since it is not compatible with sphinx 3.3 and unmaintained"; # added 2023-07-03 795 sqlalchemy-migrate = throw "sqlalchemy-migrate has been removed because it is abandoned upstream and incompatible with SQLAlchemy 2"; # added 2024-07-29 796 sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28 797 SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23 798 sqlsoup = throw "sqlsoup has been removed as it is incompatible with modern SQLAlchemy and unmaintained"; # added 2024-05-13 799 subdownloader = throw "subdownloader has been removed, because it depended on pyqt4"; # added 2022-06-09 800 suds-jurko = throw "suds-jurko has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-02-27 801 supervise_api = supervise-api; # added 2023-10-11 802 suseapi = throw "suseapi has been removed because it is no longer maintained"; # added 2023-02-27 803 synologydsm-api = py-synologydsm-api; # added 2024-07-29 804 sysv_ipc = sysv-ipc; # added 2024-01-07 805 telegram = throw "telegram has been removed since it is abandoned"; # added 2024-11-06 806 tempita = throw "tempita has been removed because it is unmaintained and the upstream repository is gone"; # added 2024-07-29 807 tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25 808 tensorflow-build_2 = tensorflow-build; # added 2021-11-25 809 tensorflow-estimator = tensorflow-estimator-bin; # added 2023-01-17 810 tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25 811 tensorflow-tensorboard = tensorboard; # added 2022-03-06 812 tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25 813 testing-postgresql = throw "testing-postgresql has been removed, since it is unmaintained since 2017"; # added 2025-05-25 814 tilestache = throw "tilestache is unmaintained and Python3 compatibility is unknown"; # Added 2025-03-23 815 Theano = theano; # added 2023-02-19 816 TheanoWithCuda = theanoWithCuda; # added 2023-02-19 817 TheanoWithoutCuda = theanoWithoutCuda; # added 2023-02-19 818 theano = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20 819 theanoWithCuda = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20 820 theanoWithoutCuda = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20 821 theano-pymc = throw "theano-pymc has been removed because it is no longer maintained"; # added 2024-05-20 822 thumborPexif = throw "thumborPexif has been removed, because it was unused."; # added 2024-01-07 823 tissue = throw "tissue has been removed, because it is archived since October 2022"; # added 2024-07-27 824 torchgpipe = throw "torchgpipe has been removed, because it appears unmaintained and Pytorch now includes pipeline parallelism support"; # added 2024-05-18 825 tornado_4 = throw "tornado_4 has been removed, use tornado instead"; # added 2025-01-13 826 tornado_5 = throw "tornado_5 has been removed, use tornado instead"; # added 2025-01-13 827 torrent_parser = torrent-parser; # added 2023-11-04 828 transip = throw "transip has been removed because it is no longer maintained. TransIP SOAP V5 API was marked as deprecated"; # added 2023-02-27 829 py-tree-sitter = throw "Was merged with tree-sitter."; # added 2024-03-20 830 transmissionrpc = throw "transmissionrpc has been removed because it no longer builds and is unmaintained"; # added 2024-10-12 831 trezor_agent = trezor-agent; # Added 2024-01-07 832 tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19 833 tvdb_api = tvdb-api; # added 2023-10-20 834 tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05 835 twitter-common-collections = throw "twitter-common-collections has been removed because it is abandoned and unmaintained"; # added 2024-07-14 836 twitter-common-confluence = throw "twitter-common-confluence has been removed because it is abandoned and unmaintained"; # added 2024-07-14 837 twitter-common-dirutil = throw "twitter-common-dirutil has been removed because it is abandoned and unmaintained"; # added 2024-07-14 838 twitter-common-lang = throw "twitter-common-lang has been removed because it is abandoned and unmaintained"; # added 2024-07-14 839 twitter-common-log = throw "twitter-common-log has been removed because it is abandoned and unmaintained"; # added 2024-07-14 840 twitter-common-options = throw "twitter-common-options has been removed because it is abandoned and unmaintained"; # added 2024-07-14 841 typed-ast = throw "typed-ast was removed because it went end of life in July 2023"; # added 2025-05-24 842 types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30 843 types-enum34 = throw "types-enum34 is obselete since Python 3.4"; # added 2025-02-15 844 types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30 845 types-typed-ast = throw "types-typed-ast was removed because so was typed-ast"; # added 2025-05-24 846 uamqp = throw "'uamqp' has been removed because it is broken and unmaintained."; # added 2025-06-11 847 ufoLib2 = ufolib2; # added 2024-01-07 848 ukrainealarm = throw "ukrainealarm has been removed, as it has been replaced as a home-assistant dependency by uasiren."; # added 2024-01-05 849 unblob-native = throw "unblob-native has been removed because its functionality is merged into unblob 25.4.14."; # Added 2025-05-02 850 unifi = throw "'unifi' has been removed as upstream was archived in 2017"; # Added 2025-08-25 851 unittest2 = throw "unittest2 has been removed as it's a backport of unittest that's unmaintained and not needed beyond Python 3.4."; # added 2022-12-01 852 update_checker = update-checker; # added 2024-01-07 853 uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13 854 uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13 855 urwid-mitmproxy-mitmproxy = throw "urwid-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-07-26 856 uuid = throw "uuid is a Python standard module"; # added 2024-04-18 857 validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07 858 validphys2 = throw "validphys2 has been removed, since it had a broken dependency that was removed"; # added 2023-07-07 859 vcver = throw "vcver has been removed, since it was an unused leaf package"; # added 2025-08-25 860 vega_datasets = vega-datasets; # added 2023-11-04 861 ViennaRNA = viennarna; # added 2023-08-23 862 virtual-display = throw "virtual-display has been renamed to PyVirtualDisplay"; # added 2023-01-07 863 vulcan-api = throw "vulcan-api has been removed. Their API has changed and they don't allow access from unofficial software anymore."; # added 2025-09-05 864 Wand = wand; # added 2022-11-13 865 wasm = throw "wasm has been removed because it no longer builds and is unmaintained"; # added 2023-05-20 866 WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29 867 weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01 868 webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29 869 weboob = throw "weboob has been removed, please use woob instead"; # added 2024-07-27 870 webhelpers = throw "webhelpers has been removed because it is unmaintained and upstream is gone"; # added 2024-07-27 871 websocket_client = websocket-client; # added 2021-06-15 872 word2vec = throw "word2vec has been removed because it is abandoned"; # added 2023-05-22 873 wsnsimpy = throw "wsnsimpy has been removed, it was unmaintained and no more compatible with Python 3.12"; # added 2025-04-01 874 wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxpython instead"; # added 2023-03-19 875 wxPython_4_1 = throw "wxPython_4_1 has been removed, use wxpython instead"; # added 2023-03-19 876 wxPython_4_2 = wxpython; # added 2024-01-07 877 WSME = wsme; # added 2023-02-19 878 x11_hash = x11-hash; # added 2023-11-05 879 xapp = python-xapp; # added 2024-07-19 880 xarray-datatree = throw "Datatree has been merged upstream into pydata/xarray, and released as of xarray version 2024.10.0."; # added 2024-11-02 881 xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31 882 XlsxWriter = xlsxwriter; # added 2023-02-19 883 yahooweather = throw "yahooweather has been removed because it is no longer maintained"; # added 2025-01-13 884 xsser = "xsser has been removed because it was unmaintained and relies on a archived project"; # added 2024-07-27 885 Yapsy = yapsy; # added 2023-02-19 886 yanc = throw "yanc has been removed because it relies on nose"; # added 2024-07-27 887 z3 = z3-solver; # added 2023-12-03 888 zake = throw "zake has been removed because it is abandoned"; # added 2023-06-20 889 zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules"; 890 zc-buildout221 = zc-buildout; # added 2021-07-21 891 zc_lockfile = zc-lockfile; # added 2024-01-06 892 zcs = throw "zcs was removed as it is no longer used by any packages in nixpkgs."; # added 2025-02-08 893 zipstream = throw "zipstream has been removed, because it has been unmaintained for 6 years and there are no dependent packages"; # added 2024-05-26 894 zipstream-new = throw "zipstream-new has been removed, because it was packaged as a dependency for octoprint, which has switched to zipstream-ng since."; # added 2024-01-05 895 zope_broken = throw "zope_broken has been removed because it is obsolete and not needed in zodb>=3.10"; # added 2023-07-26 896 zope_component = zope-component; # added 2023-07-28 897 zope_configuration = zope-configuration; # added 2023-11-12 898 zope_contenttype = zope-contenttype; # added 2023-10-11 899 zope_copy = zope-copy; # added 2024-01-06 900 zope_deprecation = zope-deprecation; # added 2023-10-07 901 zope_dottedname = zope-dottedname; # added 2023-11-12 902 zope_event = zope-event; # added 2024-01-06 903 zope_exceptions = zope-exceptions; # added 2023-10-11 904 zope_filerepresentation = zope-filerepresentation; # added 2024-01-06 905 zope_i18nmessageid = zope-i18nmessageid; # added 2023-07-29 906 zope_interface = zope-interface; # added 2024-01-06 907 zope_lifecycleevent = zope-lifecycleevent; # added 2023-10-11 908 zope_location = zope-location; # added 2024-01-06 909 zope_proxy = zope-proxy; # added 2023-10-07 910 zope_schema = zope-schema; # added 2024-01-06 911 zope_size = zope-size; # added 2024-01-06 912 zope_testing = zope-testing; # added 2023-11-12 913 zope_testrunner = zope-testrunner; # added 2024-01-06 914 zxing_cpp = zxing-cpp; # added 2023-11-05 915})