vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / top-level / python-aliases.nix
blob322711518c5bc2ab577f396ffcd79b82afcde300
1 lib: self: super:
3 with self;
5 let
6   # Removing recurseForDerivation prevents derivations of aliased attribute
7   # set to appear while listing all the packages available.
8   removeRecurseForDerivations = alias:
9       if alias.recurseForDerivations or false then
10             lib.removeAttrs alias ["recurseForDerivations"]
11                 else alias;
13   # Disabling distribution prevents top-level aliases for non-recursed package
14   # sets from building on Hydra.
15   removeDistribute = alias:
16     if lib.isDerivation alias then
17       lib.dontDistribute alias
18     else alias;
20   # Make sure that we are not shadowing something from
21   # python-packages.nix.
22   checkInPkgs = n: alias: if builtins.hasAttr n super
23                           then throw "Alias ${n} is still in python-packages.nix"
24                           else alias;
26   mapAliases = aliases:
27     lib.mapAttrs (n: alias: removeDistribute
28                              (removeRecurseForDerivations
29                               (checkInPkgs n alias)))
30                      aliases;
33   ### Deprecated aliases - for backward compatibility
35 mapAliases ({
36   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
37   abodepy = jaraco-abode; # added 2023-02-01
38   acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19
39   acoustics = throw "acoustics has been removed because the upstream repository was archived in 2024"; # Added 2024-10-04
40   adafruit-nrfutil = throw "adafruit-nrfutil has been promoted to a top-level attribute name: `pkgs.adafruit-nrfutil`."; # Added 2023-11-19
41   aioaladdinconnect = throw "aioaladdinconnect has been removed, as the API is supported was obsoleted on 2024-01-24."; # Added 2024-06-07
42   aiohttp-isal = throw "aiohttp-isal has been removed, as it has been archived and replace by aiohttp-fast-zlib"; # Added 2024-08-11
43   aiomysensors = throw "aiomysensors has been removed, as it was packaged for Home Assistant, which migrated to pymysensors."; # Added 2024-07-07
44   aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30
45   aiolip = throw "aiolip has been removed because the upstream repository was archived in 2021"; # Added 2024-10-04
46   aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27
47   aiosenseme = throw "aiosenseme has been removed, because it does no longer work with the latest firmware and has become unmaintained"; # Added 2023-07-05
48   aioquic-mitmproxy = throw "aioquic-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-01-16
49   amazon_kclpy = amazon-kclpy; # added 2023-08-08
50   ambiclimate = throw "ambiclimate has been removed, because the service has been terminated after 2024-03-31."; # Added 2024-06-07
51   ambee = throw "ambee has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04
52   ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30
53   ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute name: `pkgs.ansible-doctor`"; # Added 2023-05-16
54   ansible-later = throw "ansible-later has been promoted to a top-level attribute name: `pkgs.ansible-later`"; # Added 2023-05-16
55   ansible-lint = throw "ansible-lint has been promoted to a top-level attribute name: `pkgs.ansible-lint`"; # Added 2023-05-16
56   ansible-navigator = throw "ansible-navigator has been promoted to a top-level attribute name: pkgs.ansible-navigator"; # Added 2024-08-07
57   anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
58   apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05
59   argon2_cffi = argon2-cffi; # added 2022-05-09
60   arnparse = throw "arnparse has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04
61   APScheduler = apscheduler; # added 2023-02-19
62   async_generator = async-generator; # added 2023-08-08
63   async_stagger = async-stagger; # added 2023-08-08
64   asyncio-mqtt = throw "asyncio-mqtt has been replaced by aiomqtt, which is not API compatible."; # added 2024-07-07
65   asyncio-nats-client = nats-py; # added 2022-02-08
66   atsim_potentials = atsim-potentials; # added 2023-10-08
67   inherit (super.pkgs) autotrash; # added 2024-09-23
68   awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
69   azure-functions-devops-build = throw "azure-functions-devops-build has been removed, because it is abandoned"; # added 2024-10-04
70   Babel = babel; # added 2022-05-06
71   backports_csv = throw "backports_csv has been removed, since we no longer need to backport to python2"; # added 2023-07-28
72   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
73   backports_shutil_get_terminal_size = backports-shutil-get-terminal-size; # added 2024-04-21
74   backports_tempfile = throw "backports_tempfile has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28
75   backports_unittest-mock = throw "backports_unittest-mock has been removed, since we no longer need to backport to python3.2"; # added 2023-07-28
76   backports_weakref = throw "backports_weakref has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28
77   bash_kernel = bash-kernel; # added 2023-11-10
78   beancount_docverif = beancount-docverif; # added 2023-10-08
79   bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04
80   bip_utils = bip-utils; # 2023-10-08
81   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
82   blessings = throw "blessings has been removed in favor of blessed, as it was unmaintained"; # added 2024-08-20
83   BlinkStick = blinkstick; # added 2023-02-19
84   blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29
85   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
86   bsblan = python-bsblan; # added 2022-11-04
87   btchip = btchip-python; # added 2023-03-03
88   buildbot = throw "use pkgs.buildbot instead"; # added 2022-04-07
89   buildbot-ui = throw "use pkgs.buildbot-ui instead"; # added 2022-04-07
90   buildbot-full = throw "use pkgs.buildbot-full instead"; # added 2022-04-07
91   buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07
92   buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07
93   buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07
94   btsmarthub_devicelist = btsmarthub-devicelist; # added 2024-01-03
95   bt_proximity = bt-proximity; # added 2021-07-02
96   BTrees = btrees; # added 2023-02-19
97   cacheyou = throw "cacheyou has been removed, as it was no longer used for the only consumer pdm"; # added 2023-12-21
98   cadquery = throw "cadquery was removed, because it was disabled on all python version since 3.8 and marked as broken"; # added 2024-05-13
99   can = python-can; # added 2024-08-12
100   carrot = throw "carrot has been removed, as its development was discontinued in 2012"; # added 2022-01-18
101   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
102   cchardet = faust-cchardet; # added 2023-03-02
103   cepa = throw "cepa has been removed, as onionshare switched back to stem"; # added 2024-05-07
104   chiabip158 = throw "chiabip158 has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
105   chiapos = throw "chiapos has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
106   chiavdf = throw "chiavdf has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
107   chia-rs = throw "chia-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
108   class-registry = phx-class-registry; # added 2021-10-05
109   cirq-ft = throw "cirq-ft is not longer provieded by cirq upstream"; # added 2024-08-31
110   cld2-cffi = throw "cld2-cffi has been removed, as the last release was in 2016"; # added 2024-05-20
111   clvm = throw "clvm has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
112   clvm-rs = throw "clvm-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
113   clvm-tools = throw "clvm-tools has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
114   clvm-tools-rs = throw "clvm-tools-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
115   cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09
116   codespell = throw "codespell has been promoted to a top-level attribute name: `pkgs.codespell`"; # Added 2022-10-02
117   ColanderAlchemy = colanderalchemy; # added 2023-02-19
118   command_runner = command-runner; # added 2024-03-06
119   CommonMark = commonmark; # added 2023-02-1
120   ConfigArgParse = configargparse; # added 2021-03-18
121   coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
122   covCore = throw "covCore was renamed to cov-core and subsequently removed since it has ben unmaintained since 2014"; # added 2024-05-20
123   cov-core = throw "cov-core has been removed, it was archived and unmaintained since 2014"; # added 2024-05-21
124   cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
125   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
126   cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
127   cx_Freeze = cx-freeze; # added 2023-08-02
128   cx_oracle = cx-oracle; # added 2024-01-03
129   d2to1 = throw "d2to1 is archived and no longer works with setuptools v68"; # added 2023-07-30
130   dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
131   dateutil = python-dateutil; # added 2021-07-03
132   deep_merge = throw "deep_merge has been removed, since it is no longer maintained and may be broken."; # added 2023-10-09
133   demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
134   descartes = throw "descartes has been removed, since it is abandoned and broken"; # added 2023-06-21
135   detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
136   dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04
137   dictpath = pathable; # added 2023-01-28
138   diff_cover = diff-cover; # added 2021-07-02
139   discogs_client = discogs-client; # added 2021-07-02
140   distutils_extra = distutils-extra; # added 2023-10-12
141   digital-ocean = python-digitalocean; # addad 2024-04-12
142   djangorestframework-jwt = drf-jwt; # added 2021-07-20
143   django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18
144   django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05
145   django_appconf = django-appconf; # added 2022-03-03
146   django_classytags = django-classy-tags; # added 2023-07-25
147   django_colorful = django-colorful; # added 2023-07-25
148   django_compat = django-compat; # added 2023-07-25
149   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
150   django_contrib_comments = django-contrib-comments; # added 2023-07-25
151   django-crontab = throw "django-crontabe has been removed beacause it is unmaintained since 2018"; # added 2024-08-21
152   django-discover-runner = throw "django-discover-runner was removed because it is no longer maintained."; # added 2022-11-21
153   django_environ = django-environ; # added 2021-12-25
154   django_extensions = django-extensions; # added 2022-01-09
155   django_guardian = django-guardian; # added 2022-05-19
156   django_hijack = django-hijack; # added 2023-05-16
157   django_hijack_admin = django-hijack-admin; # added 2023-05-16
158   django-hijack-admin = throw "django-hijack-admin has been removed, since it is no longer compatible to django-hijack"; # added 2023-06-21
159   django_modelcluster = django-modelcluster; # added 2022-04-02
160   django-mysql = throw "django-mysql has been removed, since it was an unused leaf package"; # added 2024-07-02
161   django_nose = django-nose; # added 2023-07-25
162   django-nose = throw "django-nose has been removed since it has not been maintained and there are no dependent packages"; # added 2024-05-21
163   django_reversion = django-reversion; # added 2022-06-18
164   django_polymorphic = django-polymorphic; # added 2022-05-24
165   django_redis = django-redis; # added 2021-10-11
166   django_silk = django-silk; # added 2023-07-25
167   django-sr = throw "django-sr has been removed since it has been unmaintained for 10 years"; # added 2024-05-26
168   django_tagging = django-tagging; # added 2023-07-25
169   django_taggit = django-taggit; # added 2021-10-11
170   django_treebeard = django-treebeard; # added 2023-07-25
171   dns = dnspython; # added 2017-12-10
172   docker_pycreds = docker-pycreds; # added 2024-01-03
173   docker-py = throw "docker-py was renamed to docker in version 2.0.0 back in 2016"; # added 2024-05-29
174   doctest-ignore-unicode = throw "doctest-ignore-unicode has been removed since it has been unmaintained for 11 years"; # added 2024-05-20
175   dogpile_cache = dogpile-cache; # added 2021-10-28
176   dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20
177   eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
178   EasyProcess = easyprocess; # added 2023-02-19
179   email_validator = email-validator; # added 2022-06-22
180   enhancements = throw "enhancements is unmaintained upstream and has therefore been removed"; # added 2023-10-27
181   et_xmlfile = et-xmlfile; # added 2023-10-16
182   etebase-server = throw "pkgs.python3.etebase-server has been removed, use pkgs.etebase-server"; # added 2024-07-16
183   ev3dev2 = python-ev3dev2; # added 2023-06-19
184   eyeD3 = eyed3; # added 2024-01-03
185   Fabric = fabric; # addedd 2023-02-19
186   face_recognition = face-recognition; # added 2022-10-15
187   face_recognition_models = face-recognition-models; # added 2022-10-15
188   factory_boy = factory-boy; # added 2023-10-08
189   fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30
190   farm-haystack = throw "farm-haystack was removed in favor of haystack-ai"; # added 2024-07-03
191   faster-fifo = throw "faster-fifo has been removed since it was an unused leaf package"; # added 2024-07-02
192   fastnlo_toolkit = fastnlo-toolkit; # added 2024-01-03
193   fastpair = throw "fastpair is unmaintained upstream and has therefore been removed"; # added 2024-05-01
194   faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12
195   inherit (super.pkgs) fetchPypi; # added 2023-05-25
196   filebrowser_safe = filebrowser-safe; # added 2024-01-03
197   filemagic = throw "inactive since 2014, so use python-magic instead"; # added 2022-11-19
198   flaskbabel = flask-babel; # added 2023-01-19
199   flask-babelex = throw "flask-babelex package has been removed, use flask-babel instead"; # added 2024-10-07
200   flask_assets = flask-assets; # added 2023-08-23
201   flask_elastic = flask-elastic; # added 2023-08-23
202   flask_login = flask-login; # added 2022-10-17
203   flask_mail = flask-mail; # added 2023-08-23
204   flask_marshmallow = flask-marshmallow; # added 2023-08-16
205   flask_migrate = flask-migrate; # added 2023-08-23
206   flask_principal = flask-principal; # added 2023-08-23
207   flask-restplus = throw "flask-restplus is no longer maintained, use flask-restx instead"; # added 2023-02-21
208   flask_script = flask-script; # added 2023-08-23
209   flask-security-too = flask-security; # added 2024-08-26
210   flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
211   flask_testing = flask-testing; # added 2022-04-25
212   flask_wtf = flask-wtf; # added 2022-05-24
213   flask-autoindex = throw "flask-autoindex was removed, as it is not compatible with flask 3.0 and unmaintained since 2020.";
214   flask-basicauth = throw "flask-basicauth was removed, as it is not compatible with flask 3.0 and unmaintained since 2016.";
215   flask-sessionstore = throw "flask-sessionstore was removed, as it is not compatible with flask 3.0 and unmaintained since 2017.";
216   flowlogs_reader = flowlogs-reader; # added 2024-01-03
217   flufl_bounce = flufl-bounce; # added 2023-11-03
218   flufl_i18n = flufl-i18n; # added 2023-11-03
219   flufl_lock = flufl-lock; # added 2023-11-03
220   forbiddenfruit = throw "forbiddenfruit has been removed, because it was unmaintained and relied on the nose test framework"; # added 2024-07-08
221   FormEncode = formencode; # added 2023-02-19
222   foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
223   foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
224   foundationdb60 = throw "foundationdb60 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
225   foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
226   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
227   functools32 = throw "functool32 was removed from nixpkgs, because python 2.7 has reach end of life in early 2020"; # added 2024-05-16
228   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
229   garages-amsterdam = throw "garages-amsterdam has been renamed odp-amsterdam."; # added 2023-01-04
230   garminconnect-ha = garminconnect; # added 2022-02-05
231   gcs-oauth2-boto-plugin = throw "gcs-oauth2-boto-plugin was removed as it depends on the removed boto package"; # Added 2024-09-22
232   gdtoolkit = throw "gdtoolkit has been promoted to a top-level attribute name: `pkgs.gdtoolkit`"; # added 2023-02-15
233   GeoIP = geoip; # added 2023-02-19
234   gigalixir = throw "gigalixir has been promoted to a top-level attribute name: `pkgs.gigalixir`"; # Added 2022-10-02
235   gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
236   github3_py = github3-py; # added 2024-01-04
237   GitPython = gitpython; # added 2022-10-28
238   glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
239   glasgow = throw "glasgow has been promoted to a top-level attribute name: `pkgs.glasgow`"; # added 2023-02-05
240   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
241   google-reauth = throw "google-reauth has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04
242   google_api_python_client = google-api-python-client; # added 2021-03-19
243   googleapis_common_protos = googleapis-common-protos; # added 2021-03-19
244   google-apitools = throw "google-apitools was removed because it is deprecated and unsupported by upstream"; # added 2023-02-25
245   gpyopt = throw "gpyopt was remove because it's been archived upstream"; # added 2023-06-07
246   gradient_statsd = gradient-statsd; # added 2024-01-06
247   graphite_api = throw "graphite_api was removed, because it is no longer maintained"; # added 2022-07-10
248   graphite_beacon = throw "graphite_beacon was removed, because it is no longer maintained"; # added 2022-07-09
249   grappelli_safe = grappelli-safe; # added 2023-10-08
250   groestlcoin_hash = groestlcoin-hash; # added 2024-01-06
251   grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21
252   inherit (pkgs) gtimelog;
253   guzzle_sphinx_theme = guzzle-sphinx-theme; # added 2023-10-16
254   ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06
255   HAP-python = hap-python; # added 2021-06-01
256   hangups = throw "hangups was removed because Google Hangouts has been shut down"; # added 2023-02-13
257   hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07
258   hcs_utils = hcs-utils; # added 2024-01-06
259   hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
260   hglib = python-hglib; # added 2023-10-13
261   hkdf = throw "hkdf has been removed, as it is no longer maintained upstream."; # added 2024-10-04
262   homeassistant-bring-api = bring-api; # added 2024-04-11
263   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
264   htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04
265   HTSeq = htseq; # added 2023-02-19
266   hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29
267   ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08
268   IMAPClient = imapclient; # added 2021-10-28
269   imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08
270   image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10
271   imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10
272   intreehook =  throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11
273   ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30
274   ipdbplugin = throw "ipdbplugin has been removed because it has no longer maintained for 6 years";  # added 2024-05-21
275   ipython_genutils = ipython-genutils; # added 2023-10-12
276   influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10
277   itanium_demangler = itanium-demangler; # added 2022-10-17
278   jaraco_classes = jaraco-classes; # added 2023-07-14
279   jaraco_collections = jaraco-collections; # added 2023-07-14
280   jaraco_functools = jaraco-functools; # added 2023-07-14
281   jaraco_itertools = jaraco-itertools; # added 2023-07-14
282   jaraco_logging = jaraco-logging; # added 2023-07-14
283   jaraco_text = jaraco-text; # added 2023-07-14
284   jaraco_stream = jaraco-stream; # added 2023-07-14
285   JayDeBeApi = jaydebeapi; # added 2023-02-19
286   jinja2_pluralize = jinja2-pluralize; # added 2023-11-01
287   jinja2_time = jinja2-time; # added 2022-11-07
288   JPype1 = jpype1; # added 2023-02-19
289   jsonpath_rw = jsonpath-rw; # added 2024-01-06
290   jsonschema_3 = throw "jsonschema 3 is neither the latest version nor needed inside nixpkgs anymore"; # added 2023-06-28
291   jupyter_client = jupyter-client; # added 2021-10-15
292   jupyter_console = jupyter-console; # added  2023-07-31
293   jupyter-contrib-nbextensions = throw "jupyter-contrib-nbextensions has been removed, as it does not work with Jupyter Notebook 7"; # added 2024-09-22
294   jupyter_core = jupyter-core; # added 2023-01-05
295   jupyter_server = jupyter-server; # added 2023-01-05
296   jupyter-server-ydoc = jupyter-collaboration; # added 2023-07-18
297   jupyterlab_launcher = throw "jupyterlab_launcher has been removed as it's abandoned for over 5 years and broken"; # added 2023-11-11
298   jupyterlab_server = jupyterlab-server; # added 2023-11-12
299   kafka-python = kafka-python-ng; # added 2024-07-19
300   Kajiki = kajiki; # added 2023-02-19
301   keepkey_agent = keepkey-agent; # added 2024-01-06
302   Keras = keras; # added 2021-11-25
303   ldap = python-ldap; # added 2022-09-16
304   lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04
305   langchainplus-sdk = langsmith; # added 2023-08-01
306   lazr_config = lazr-config; # added 2023-11-03
307   lazr_delegates = lazr-delegates; # added 2023-11-03
308   lazy_import = lazy-import; # added 2024-01-07
309   lazy-import = throw "lazy-import has been removed because it was unused."; # added 2024-05-20
310   lazy_imports = lazy-imports; # added 2023-10-13
311   ledger_agent = ledger-agent; # Added 2024-01-07
312   lektor = throw "lektor has been promoted to a top-level attribute name: `pkgs.lektor`"; # added 2023-08-01
313   libgpuarray = throw "libgpuarray has been removed, as it was unmaintained."; # added 2024-08-03
314   line_profiler = line-profiler; # added 2023-11-04
315   linear_operator = linear-operator; # added 2024-01-07
316   livestreamer = throw "'livestreamer' has been removed, as it unmaintained. A currently maintained fork is 'streamlink'."; # added 2023-11-14
317   livestreamer-curses = throw "'livestreamer-curses' has been removed as it, and livestreamer itself are unmaintained."; # added 2023-11-14
318   logilab_astng = throw "logilab-astng has not been released since 2013 and is unmaintained"; # added 2022-11-29
319   logilab_common = logilab-common; # added 2022-11-21
320   loo-py = loopy; # added 2022-05-03
321   ludios_wpull = throw "ludios_wpull has been removed because it's unmaintained and broken"; # added 2023-11-12
322   lcov_cobertura = lcov-cobertura; # added 2024-01-07
323   Mako = mako; # added 2023-02-19
324   Markups = markups; # added 2022-02-14
325   markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10
326   mask-rcnn = throw "mask-rcnn has been removed as it is unmaintained and its dependency imgaug no longer builds"; # added 2023-07-10
327   mac_alias = mac-alias; # added 2024-01-07
328   MDP = mdp; # added 2023-02-19
329   MechanicalSoup = mechanicalsoup; # added 2021-06-01
330   memcached = python-memcached; # added 2022-05-06
331   mailman = throw "Please use pkgs.mailman"; # added 2022-04-29
332   mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29
333   mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
334   manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20
335   mapbox = throw "mapbox has been removed because the upstream repository was archived in 2022"; # Added 2024-10-04
336   marshmallow-enum = throw "marshmallow-enum has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10
337   markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19
338   memory_profiler = memory-profiler; # added 2023-10-09
339   mir_eval = mir-eval; # added 2024-01-07
340   mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12
341   mistune_2_0 = mistune; # added 2022-08-12
342   mitmproxy-wireguard = throw "mitmproxy-wireguard has been removed because it was replaced by upstream with mitmproxy-rs"; # added 2023-11-06
343   mkdocs-minify = mkdocs-minify-plugin; # added 2023-11-28
344   mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21
345   mox3 = throw "mox3 was removed because it is unmaintained"; # added 2024-08-30
346   mrkd = throw "mrkd has been promoted to a top-level attribute name: `pkgs.mrkd`"; # added 2023-08-01
347   multi_key_dict = multi-key-dict; # added 2023-11-05
348   mutmut = throw "mutmut has been promoted to a top-level attribute name: `pkgs.mutmut`"; # added 2022-10-02
349   n3fit = throw "n3fit has been removed since it relies on a dependency that was removed"; # added 2024-08-24
350   nbmerge = throw "nbmerge has moved to pkgs.nbmerge"; # added 2024-07-05
351   mypy-boto3-alexaforbusiness = throw "mypy-boto3-alexaforbusiness was removed because it is unmaintained"; # added 2024-09-04
352   mypy-boto3-backupstorage = throw "mypy-boto3-backupstorage was removed because it is unmaintained"; # added 2024-09-04
353   mypy-boto3-gamesparks = throw "mypy-boto3-gamesparks was removed because it is unmaintained"; # added 2024-09-04
354   mypy-boto3-honeycode = throw "mypy-boto3-honeycode was removed because it is unmaintained"; # added 2024-09-04
355   mypy-boto3-iot-roborunner = throw "mypy-boto3-iot-roborunner was removed because it is unmaintained"; # added 2024-09-04
356   mypy-boto3-macie = throw "mypy-boto3-macie was removed because it is unmaintained"; # added 2024-09-04
357   mypy-boto3-mobile = throw "mypy-boto3-mobile was removed because it is unmaintained"; # added 2024-09-04
358   net2grid = gridnet; # add 2022-04-22
359   nghttp2 = throw "in 1.52.0 removed deprecated python bindings."; # added 2023-06-08
360   ninja-python = ninja; # add 2022-08-03
361   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
362   nose3 = throw "nose3 has been removed since it is unmaintained and does not work with Python 3.12"; # added 2024-07-28
363   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
364   nose-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21
365   nosexcover = throw "nosexcover has been removed since it has not been maintained and there are no dependent packages"; # added 2024-05-21
366   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
367   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
368   nose-exclude = throw "nose-exclude has been removed since it has not been maintained since 2016"; # added 2024-05-21
369   nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22
370   nose-pattern-exclude = throw "nose-pattern-exclude has been removed as it has been unmaintained since 2014"; # added 2024-07-27
371   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
372   nose-timer = throw "nose-timer has been removed as it depends on the abandoned nose test framework"; # added 2024-07-27
373   nose-warnings-filters = throw "nose-warnings-filters has been removed as it has been unmaintained since 2016"; # added 2024-07-27
374   nose_warnings_filters = nose-warnings-filters; # added 2024-01-07
375   nose-xunitmp = throw "nose-xunitmp has been removed as it depends on the abandoned nose test framework"; # added 2024-07-29
376   notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
377   Nuitka = nuitka; # added 2023-02-19
378   ntlm-auth = throw "ntlm-auth has been removed, because it relies on the md4 implementation provided by openssl. Use pyspnego instead.";
379   openai-triton = triton; # added 2024-07-18
380   openai-triton-bin = triton-bin; # added 2024-07-18
381   openai-triton-cuda = triton-cuda; # added 2024-07-18
382   openai-triton-no-cuda = triton-no-cuda; # added 2024-07-18
383   openapi-schema-pydantic = throw "openapi-schema-pydantic has been removed, since it is no longer maintained"; # added 2023-10-30
384   opencv3 = throw "opencv3 has been removed as it is obsolete"; # added 2023-10-12
385   openllm = throw "openllm has moved to pkgs.openllm"; # added 2021-12-31
386   openllm-client = throw "openllm-client has been removed, since it is abandoned due to a change in philosophy"; # added 2024-08-24
387   openllm-core = throw "openllm-core has been removed, since it is abandoned due to a change in philosophy"; # added 2024-08-24
388   opsdroid_get_image_size = opsdroid-get-image-size; # added 2023-10-16
389   ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
390   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
391   pam = python-pam; # added 2020-09-07.
392   PasteDeploy = pastedeploy; # added 2021-10-07
393   pathlib = throw "pathlib was removed as it has been integrated in python standard library in version 3.4"; # added 2024-05-13
394   pathpy = path; # added 2022-04-12
395   pcbnew-transition = pcbnewtransition; # added 2024-03-21
396   pc-ble-driver-py = throw "pc-ble-driver-py has been removed because the upstream repository was archived in 2024"; # Added 2024-10-04
397   pdfposter = throw "pdfposter was promoted to a top-level attribute"; # Added 2023-06-29
398   pdfminer = pdfminer-six; # added 2022-05-25
399   pdfx = throw "pdfx has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04
400   pep257 = pydocstyle; # added 2022-04-12
401   pixelmatch = "pixelmatch has been removed as it was unmaintained"; # Added 2024-08-18
402   pkutils = throw "pkutils was removed as it was unused and is not applicable to modern Python build tools"; # added 2024-07-28
403   poetry = throw "poetry was promoted to a top-level attribute, use poetry-core to build Python packages"; # added 2023-01-09
404   poetry2conda = throw "poetry2conda was promoted to a top-level attribute"; # Added 2022-10-02
405   Polygon3 = polygon3; # Added 2023-08-08
406   posix_ipc = posix-ipc; # added 2024-01-07
407   poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29
408   postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29
409   powerlineMemSegment = powerline-mem-segment; # added 2021-10-08
410   prayer-times-calculator = prayer-times-calculator-offline; # added 2024-08-11
411   premailer = throw "premailer was removed, as it is not compatible with lxml>4.9.4.";
412   privacyidea-ldap-proxy = throw "privacyidea-ldap-proxy has been removed from nixpkgs"; # added 2023-10-31
413   proboscis = throw "proboscis has been removed since it has not been maintained for 11 years"; # added 2024-05-20
414   prometheus_client = prometheus-client; # added 2021-06-10
415   prompt_toolkit = prompt-toolkit; # added 2021-07-22
416   protonup = protonup-ng; # Added 2022-11-06
417   proxy_tools = proxy-tools; # added 2023-11-05
418   pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08
419   pushbullet = pushbullet-py;  # Added 2022-10-15
420   Pweave = pweave; # added 2023-02-19
421   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
422   py-radix = throw "py-radix has been removed, since it abandoned"; # added 2023-07-07
423   py_stringmatching = py-stringmatching; # added 2023-11-12
424   py17track = throw "py17track was removed because Home Assistant switched to pyseventeentrack"; # added 2024-08-08
425   pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02
426   pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23
427   pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20
428   pycontracts = throw "pycontracts has been removed, since upstream is no longer active and it is broken on modern Python versions."; # added 2024-08-09
429   pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
430   pyjet = throw "pyjet is deprecated, use fastjet instead"; # added 2023-05-10
431   pygame_sdl2 = pygame-sdl2; # added 2024-01-07
432   pygogo = throw "pygogo has been removed, since it is abandoned and had no maintainer"; # added 2024-07-27
433   pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20
434   PyGithub = pygithub; # added 2023-02-19
435   pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
436   pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
437   pychef = throw "pychef has been removed because it's been archived upstream and abandoned since 2017."; # added 2022-11-14
438   PyChromecast = pychromecast; # added 2023-02-19
439   pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28
440   pyfftw = throw "pyfftw has been removed because it is unmaintained and broken."; # Added 2024-06-17
441   pyflunearyou = pyoutbreaksnearme; # added 2023-02-11
442   pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07
443   pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07
444   PyICU = pyicu; # Added 2022-12-22
445   pyhs100 = throw "pyhs100 has been removed in favor of python-kasa."; # added 2024-01-05
446   pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
447   PyLD = pyld; # added 2022-06-22
448   pylti = throw "pylti has been removed because it is unmaintained since 2019"; # added 2024-05-21
449   pymaging = throw "pymaging has been removed because it has not been maintained for 10 years and has been archived."; # added 2023-11-04
450   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
451   pymatgen-lammps = throw "pymatgen-lammps has been removed because it is unmaintained and broken"; # added 2023-06-20
452   pymazda = throw "pymazda has been removed, because the upstream repo has been affected by a DCMA claim."; # added 2023-10-16
453   pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
454   pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
455   PyMVGLive = pymvglive; # added 2023-02-19
456   pymyq = python-myq; # added 2023-10-20
457   pynose = throw "pynose was removed, because it violates the license of nose, by redistributing modified LGPL code under MIT.";
458   python-ethtool = ethtool; # added 2024-07-23
459   python-myq = throw "python-myq has been removed, as the service provider has decided to block its API requests"; # added 2023-12-07
460   pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09
461   pyqt5_sip = pyqt5-sip; # added 2024-01-07
462   pyqt5_with_qtmultimedia = pyqt5-multimedia; # added 2024-01-07
463   pyqt5_with_qtwebkit = pyqt5-webkit; # added 2024-01-07
464   pyramid_beaker = pyramid-beaker; # added 2023-08-23
465   pyramid_chameleon = pyramid-chameleon; # added 2023-08-23
466   pyramid_exclog = pyramid-exclog; # added 2023-08-24
467   pyramid_hawkauth = throw "pyramid_hawkauth has been removed because it is no longer maintained"; # added 2023-02-2
468   pyramid_jinja2 = pyramid-jinja2; # added 2023-06-06
469   pyramid_mako = pyramid-mako; # added 2023-08-24
470   pyramid_multiauth = pyramid-multiauth; # added 2023-08-24
471   pyreadability = readability-lxml; # added 2022-05-24
472   pyres = throw "pyres has been removed, since it is abandoned and broken"; # added 2023-06-20
473   pygeoip = throw "pygeoip has been removed, since it wash archived in April 2018"; # added 2024-07-27
474   pygeos = throw "pygeos has been removed, since it was merged with shapely 2.0"; # added 2024-05-26
475   pyRFC3339 = pyrfc3339; # added 2024-01-07
476   pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
477   pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
478   pyroute2-ipdb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
479   pyroute2-ipset = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
480   pyroute2-ndb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
481   pyroute2-nftables = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
482   pyroute2-nslink = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
483   pyroute2-protocols = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
484   Pyro4 = pyro4; # added 2023-02-19
485   Pyro5 = pyro5; # added 2023-02-19
486   PyRSS2Gen = pyrss2gen; # added 2023-02-19
487   pyruckus = throw "pyruckus has been removed, it was deprecrated in favor of aioruckus."; # added 2023-09-07
488   py_scrypt = py-scrypt; # added 2024-01-07
489   pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
490   pysimplegui = throw "pysimplegui update to v5 broke the package, it now needs a license key to decrypt the source code"; # added 2024-09-16
491   pysmart-smartx = pysmart; # added 2021-10-22
492   pySmartDL = pysmartdl; # added 2023-10-11
493   pysmi-lextudio = pysmi; # added 2024-07-18
494   pysnmp-lextudio = pysnmp; # added 2024-07-18
495   pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28
496   pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
497   PyStemmer = pystemmer; # added 2023-02-19
498   pytest_6 = pytest; # added 2022-02-10
499   pytestcov = pytest-cov; # added 2021-01-04
500   pytest-ordering = throw "pytest-ordering has been removed, since it is no longer maintained and broken"; # added 2023-06-22
501   pytest-openfiles = throw "pytest-openfiles has been removed, since it is unmaintained and archived"; # added 2024-06-19
502   pytest-pep8 = pytestpep8; # added 2021-01-04
503   pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12
504   pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09
505   pytest-runner = throw "pytest-runner has been removed as it uses deprecated features of setuptools and is deprecated by upstream"; # added 2024-09-15
506   pytest-sanic = throw "pytest-sanic has been removed because it is unmaintained and broken"; # added 2023-06-22
507   pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10
508   pytestquickcheck = pytest-quickcheck; # added 2021-07-20
509   pytestrunner = pytest-runner; # added 2021-01-04
510   python-forecastio = throw "python-forecastio has been removed, as the Dark Sky service was shut down."; # added 2023-04-05
511   python-igraph = igraph; # added 2021-11-11
512   python_openzwave = python-openzwave; # added 2024-01-07
513   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
514   python_docs_theme = python-docs-theme; # added 2023-11-04
515   python_fedora = python-fedora; # added 2023-11-15
516   python_keyczar = throw "python_keyczar has been removed because it's been archived upstream and deprecated"; # added 2023-05-16
517   python-lz4 = lz4; # added 2018-06-01
518   python_magic = python-magic; # added 2022-05-07
519   python_mimeparse = python-mimeparse; # added 2021-10-31
520   python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03
521   python-Levenshtein = levenshtein;
522   python-pushover = throw "python-pushover has been removed, since it is unmaintained and is broken"; # added 2023-07-03
523   python-subunit = subunit; # added 2021-09-10
524   pytest_xdist = pytest-xdist; # added 2021-01-04
525   python_simple_hipchat = python-simple-hipchat; # added 2021-07-21
526   pytoml = throw "pytoml has been removed because it is unmaintained and is superseded by toml"; # Added 2023-04-11
527   pytorch = torch; # added 2022-09-30
528   pytorch-bin = torch-bin; # added 2022-09-30
529   pytorchWithCuda = torchWithCuda; # added 2022-09-30
530   pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30
531   pytwitchapi = twitchapi; # added 2022-03-07
532   pyuavcan = throw "pyuavcan has been renamed to pycyphal and the old package deprecated, use pycyphal instead"; # added 2024-02-09
533   pyunifiprotect = throw "pyunifiprotect has disappeared from GitHub and PyPI, use uiprotect instead"; # added 2024-09-17
534   pyutilib = throw "pyutilib has been removed, since it is no longer maintained"; # added 2024-07-28
535   pyvcf = throw "pyvcf has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-05-19
536   pyvicare = pyvicare-neo; # added 2024-08-31
537   PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
538   pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01
539   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
540   pyzufall =  throw "pyzufall was removed, because it is no longer maintained"; # added 2024-05-14
541   qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
542   qds-sdk = throw "qds-sdk was removed as it is unmaintained upstream and depends on the removed boto package"; # Added 2024-09-22
543   qds_sdk = qds-sdk; # added 2023-10-21
544   Quandl = quandl; # added 2023-02-19
545   querystring_parser = querystring-parser; # added 2024-01-07
546   qcodes-loop = throw "qcodes-loop has been removed due to deprecation"; # added 2023-11-30
547   qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
548   rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01
549   radicale_infcloud = radicale-infcloud; # added 2024-01-07
550   radio_beam = radio-beam; # added 2023-11-04
551   ratelimiter = throw "ratelimiter has been removed, since it is unmaintained and broken"; # added 2023-10-21
552   rauth = throw "rauth has beed removed, since it is unmaintained upstream"; # added 2024-07-27
553   rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05
554   readme_renderer = readme-renderer; # added 2024-01-07
555   recaptcha_client = throw "recaptcha_client has been removed since it is no longer maintained"; # added 2023-10-20
556   recursivePthLoader = recursive-pth-loader; # added 2024-01-07
557   rednose = throw "rednose is no longer maintained (since February 2018)"; # added 2023-08-06
558   repeated_test = repeated-test; # added 2022-11-15
559   reportengine = throw "reportengine has been removed, since it is unmaintained and broken"; # added 2024-08-21
560   repoze_lru = repoze-lru; # added 2023-11-11
561   repoze_sphinx_autointerface = repoze-sphinx-autointerface; # added 2023-11-11
562   repoze_who = repoze-who; # added 2023-11-11
563   requests_download = requests-download; # added 2024-01-07
564   requests_ntlm = requests-ntlm; # added 2024-01-07
565   requests_oauthlib = requests-oauthlib; # added 2022-02-12
566   requests_toolbelt = requests-toolbelt; # added 2017-09-26
567   restructuredtext_lint = restructuredtext-lint; # added 2023-11-04
568   retry_decorator = retry-decorator; # added 2024-01-07
569   retworkx = rustworkx; # added 2023-05-14
570   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
571   rl-coach = "rl-coach was removed because the project is discontinued and was archived by upstream"; # added 2023-05-03
572   roboschool = throw "roboschool is deprecated in favor of PyBullet and has been removed"; # added 2022-01-15
573   ronin = throw "ronin has been removed because it was unmaintained since 2018"; # added 2024-08-21
574   ROPGadget = ropgadget; # added 2021-07-06
575   rotate-backups = throw "rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01
576   ruamel_base = ruamel-base; # added 2021-11-01
577   ruamel_yaml = ruamel-yaml; # added 2021-11-01
578   ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01
579   inherit (super.pkgs) ruff-lsp; # added 2023-06-23
580   runway-python = throw "SDK has been deprecated and was archived by upstream"; # added 2023-05-03
581   safe = throw "safe has been removed, it was unmaintained sinced October 2019"; # added 2024-07-28
582   sampledata = throw "sampledata has been removed, it was unmaintained since 2017"; # added 2024-07-27
583   sapi-python-client = kbcstorage; # added 2022-04-20
584   scikitimage = scikit-image; # added 2023-05-14
585   scikitlearn = scikit-learn; # added 2021-07-21
586   scikit-optimize = throw "scikit-optimize has been removed because it is abandoned"; # added 2024-09-30
587   scikits-samplerate = throw "scikits-samplerate has been removed, it was unsed and unmaintained since 2015"; # added 2024-05-23
588   selectors2 = throw "selectors2 has been removed: archived by upstream."; # added 2024-07-27
589   selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10
590   sequoia = throw "python3Packages.sequoia was replaced by pysequoia - built from a dedicated repository, with a new API."; # added 2023-06-24
591   setuptools_dso = setuptools-dso; # added 2024-03-03
592   setuptools_scm = setuptools-scm; # added 2021-06-03
593   setuptoolsTrial = setuptools-trial; # added 2023-11-11
594   sharkiqpy = sharkiq; # added 2022-05-21
595   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
596   sip_4 = sip4; # added 2024-01-07
597   slackclient = slack-sdk; # added 2024-06-27
598   ssh-mitm = throw "ssh-mitm was removed in favor of the top-level ssh-mitm"; # added 2023-05-09
599   smart_open = smart-open; # added 2021-03-14
600   smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
601   smpp_pdu = smpp-pdu; # added 2024-03-05
602   somecomfort = throw "somecomfort was removed because Home Assistant switched to aiosomecomfort"; # added 2023-02-01
603   solaredge = throw "solaredge was removed because Home Assistant switched to aiosolaredge"; # added 2024-07-15
604   sorl_thumbnail = sorl-thumbnail; # added 2023-11-12
605   spacy_models = spacy-models; # added 2024-04-21
606   SPARQLWrapper = sparqlwrapper;
607   spark_parser = spark-parser; # added 2024-01-07
608   sphinx-jquery = sphinxcontrib-jquery; # added 2023-02-24
609   sphinx_pypi_upload = throw "sphinx_pypi_upload has been removed since it is abandoned."; # added 2023-10-11
610   sphinx_rtd_theme = sphinx-rtd-theme; # added 2022-08-03
611   sphinxcontrib-autoapi = sphinx-autoapi; # added 2023-02-28
612   sphinxcontrib_httpdomain = sphinxcontrib-httpdomain; # added 2023-07-20
613   sphinxcontrib_newsfeed = sphinxcontrib-newsfeed; # added 2023-07-20
614   sphinxcontrib_plantuml = sphinxcontrib-plantuml; # added 2021-08-02
615   sphinx-navtree = throw "sphinx-navtree has been removed since it is not compatible with sphinx 3.3 and unmaintained"; # added 2023-07-03
616   sqlalchemy-migrate = throw "sqlalchemy-migrate has been removed because it is abandoned upstream and incompatible with SQLAlchemy 2"; # added 2024-07-29
617   sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28
618   SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23
619   sqlsoup = throw "sqlsoup has been removed as it is incompatible with modern SQLAlchemy and unmaintained"; # added 2024-05-13
620   subdownloader = throw "subdownloader has been removed, because it depended on pyqt4"; # added 2022-06-09
621   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
622   supervise_api = supervise-api; # added 2023-10-11
623   suseapi = throw "suseapi has been removed because it is no longer maintained"; # added 2023-02-27
624   synologydsm-api = py-synologydsm-api; # added 2024-07-29
625   sysv_ipc = sysv-ipc; # added 2024-01-07
626   tempita = throw "tempita has been removed because it is unmaintained and the upstream repository is gone"; # added 2024-07-29
627   tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25
628   tensorflow-build_2 = tensorflow-build; # added 2021-11-25
629   tensorflow-estimator = tensorflow-estimator-bin; # added 2023-01-17
630   tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25
631   tensorflow-tensorboard = tensorboard; # added 2022-03-06
632   tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
633   Theano = theano; # added 2023-02-19
634   TheanoWithCuda = theanoWithCuda; # added 2023-02-19
635   TheanoWithoutCuda = theanoWithoutCuda; # added 2023-02-19
636   theano = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20
637   theanoWithCuda = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20
638   theanoWithoutCuda = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20
639   theano-pymc = throw "theano-pymc has been removed because it is no longer maintained"; # added 2024-05-20
640   thumborPexif = throw "thumborPexif has been removed, because it was unused."; # added 2024-01-07
641   tissue = throw "tissue has been removed, because it is archived since October 2022"; # added 2024-07-27
642   torchgpipe = throw "torchgpipe has been removed, because it appears unmaintained and Pytorch now includes pipeline parallelism support"; # added 2024-05-18
643   torrent_parser = torrent-parser; # added 2023-11-04
644   transip = throw "transip has been removed because it is no longer maintained. TransIP SOAP V5 API was marked as deprecated"; # added 2023-02-27
645   py-tree-sitter = throw "Was merged with tree-sitter."; # added 2024-03-20
646   trezor_agent = trezor-agent; # Added 2024-01-07
647   tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19
648   tvdb_api = tvdb-api; # added 2023-10-20
649   tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
650   twitter-common-collections = throw "twitter-common-collections has been removed because it is abandoned and unmaintained"; # added 2024-07-14
651   twitter-common-confluence = throw "twitter-common-confluence has been removed because it is abandoned and unmaintained"; # added 2024-07-14
652   twitter-common-dirutil = throw "twitter-common-dirutil has been removed because it is abandoned and unmaintained"; # added 2024-07-14
653   twitter-common-lang = throw "twitter-common-lang has been removed because it is abandoned and unmaintained"; # added 2024-07-14
654   twitter-common-log = throw "twitter-common-log has been removed because it is abandoned and unmaintained"; # added 2024-07-14
655   twitter-common-options = throw "twitter-common-options has been removed because it is abandoned and unmaintained"; # added 2024-07-14
656   types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30
657   types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
658   ufoLib2 = ufolib2; # added 2024-01-07
659   ukrainealarm = throw "ukrainealarm has been removed, as it has been replaced as a home-assistant dependency by uasiren."; # added 2024-01-05
660   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
661   update_checker = update-checker; # added 2024-01-07
662   uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13
663   uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13
664   urwid-mitmproxy-mitmproxy = throw "urwid-mitmproxy has been removed because mitmproxy no longer uses it"; # Added 2024-07-26
665   uuid = throw "uuid is a Python standard module"; # added 2024-04-18
666   validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07
667   validphys2 = throw "validphys2 has been removed, since it had a broken dependency that was removed"; # added 2023-07-07
668   vega_datasets = vega-datasets; # added 2023-11-04
669   ViennaRNA = viennarna; # added 2023-08-23
670   virtual-display = throw "virtual-display has been renamed to PyVirtualDisplay"; # added 2023-01-07
671   Wand = wand; # added 2022-11-13
672   wasm = throw "wasm has been removed because it no longer builds and is unmaintained"; # added 2023-05-20
673   WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
674   weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01
675   webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
676   weboob = throw "weboob has been removed, please use woob instead"; # added 2024-07-27
677   webhelpers = throw "webhelpers has been removed because it is unmaintained and upstream is gone"; # added 2024-07-27
678   websocket_client = websocket-client; # added 2021-06-15
679   word2vec = throw "word2vec has been removed because it is abandoned"; # added 2023-05-22
680   wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxpython instead"; # added 2023-03-19
681   wxPython_4_1 = throw "wxPython_4_1 has been removed, use wxpython instead"; # added 2023-03-19
682   wxPython_4_2 = wxpython; # added 2024-01-07
683   WSME = wsme; # added 2023-02-19
684   x11_hash = x11-hash; # added 2023-11-05
685   xapp = python-xapp; # added 2024-07-19
686   xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
687   XlsxWriter = xlsxwriter; # added 2023-02-19
688   xsser = "xsser has been removed because it was unmaintained and relies on a archived project"; # added 2024-07-27
689   Yapsy = yapsy; # added 2023-02-19
690   yanc  = throw "yanc has been removed because it relies on nose"; # added 2024-07-27
691   z3 = z3-solver; # added 2023-12-03
692   zake = throw "zake has been removed because it is abandoned"; # added 2023-06-20
693   zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
694   zc-buildout221 = zc-buildout; # added 2021-07-21
695   zc_lockfile = zc-lockfile; # added 2024-01-06
696   zipstream = throw "zipstream has been removed, because it has been unmaintained for 6 years and there are no dependent packages"; # added 2024-05-26
697   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
698   zope_broken = throw "zope_broken has been removed because it is obsolete and not needed in zodb>=3.10"; # added 2023-07-26
699   zope_component = zope-component; # added 2023-07-28
700   zope_configuration = zope-configuration; # added 2023-11-12
701   zope_contenttype = zope-contenttype; # added 2023-10-11
702   zope_copy = zope-copy; # added 2024-01-06
703   zope_deprecation = zope-deprecation; # added 2023-10-07
704   zope_dottedname = zope-dottedname; # added 2023-11-12
705   zope_event = zope-event; # added 2024-01-06
706   zope_exceptions = zope-exceptions; # added 2023-10-11
707   zope_filerepresentation = zope-filerepresentation; # added 2024-01-06
708   zope_i18nmessageid = zope-i18nmessageid; # added 2023-07-29
709   zope_interface = zope-interface; # added 2024-01-06
710   zope_lifecycleevent = zope-lifecycleevent; # added 2023-10-11
711   zope_location = zope-location; # added 2024-01-06
712   zope_proxy = zope-proxy; # added 2023-10-07
713   zope_schema = zope-schema; # added 2024-01-06
714   zope_size = zope-size; # added 2024-01-06
715   zope_testing = zope-testing; # added 2023-11-12
716   zope_testrunner = zope-testrunner; # added 2024-01-06
717   zxing_cpp = zxing-cpp; # added 2023-11-05