2021-03-15 03:00:14 +03:00
|
|
|
lib: self: super:
|
|
|
|
|
|
|
|
with self;
|
|
|
|
|
|
|
|
let
|
|
|
|
# Removing recurseForDerivation prevents derivations of aliased attribute
|
|
|
|
# set to appear while listing all the packages available.
|
|
|
|
removeRecurseForDerivations = alias: with lib;
|
|
|
|
if alias.recurseForDerivations or false then
|
|
|
|
removeAttrs alias ["recurseForDerivations"]
|
|
|
|
else alias;
|
|
|
|
|
|
|
|
# Disabling distribution prevents top-level aliases for non-recursed package
|
|
|
|
# sets from building on Hydra.
|
|
|
|
removeDistribute = alias: with lib;
|
|
|
|
if isDerivation alias then
|
|
|
|
dontDistribute alias
|
|
|
|
else alias;
|
|
|
|
|
|
|
|
# Make sure that we are not shadowing something from
|
|
|
|
# python-packages.nix.
|
|
|
|
checkInPkgs = n: alias: if builtins.hasAttr n super
|
|
|
|
then throw "Alias ${n} is still in python-packages.nix"
|
|
|
|
else alias;
|
|
|
|
|
|
|
|
mapAliases = aliases:
|
|
|
|
lib.mapAttrs (n: alias: removeDistribute
|
|
|
|
(removeRecurseForDerivations
|
|
|
|
(checkInPkgs n alias)))
|
|
|
|
aliases;
|
|
|
|
in
|
|
|
|
|
|
|
|
### Deprecated aliases - for backward compatibility
|
|
|
|
|
|
|
|
mapAliases ({
|
2023-02-02 06:21:32 +03:00
|
|
|
abodepy = jaraco-abode; # added 2023-02-01
|
2023-05-19 13:53:49 +03:00
|
|
|
acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19
|
2022-03-30 02:12:31 +03:00
|
|
|
aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30
|
2023-07-06 00:30:07 +03:00
|
|
|
aiosenseme = throw "aiosenseme has been removed, because it does no longer work with the latest firmware and has become unmaintained"; # Added 2023-07-05
|
2022-03-30 20:55:20 +03:00
|
|
|
ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30
|
2023-05-16 02:09:45 +03:00
|
|
|
ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute"; # Added 2023-05-16
|
2023-05-16 10:48:23 +03:00
|
|
|
ansible-later = throw "ansible-later has been promoted to a top-level attribute"; # Added 2023-05-16
|
2023-05-16 02:03:21 +03:00
|
|
|
ansible-lint = throw "ansible-lint has been promoted to a top-level attribute"; # Added 2023-05-16
|
2022-01-18 17:07:05 +03:00
|
|
|
anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
2023-06-05 21:48:09 +03:00
|
|
|
apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05
|
2022-05-09 03:07:25 +03:00
|
|
|
argon2_cffi = argon2-cffi; # added 2022-05-09
|
2023-02-19 19:15:19 +03:00
|
|
|
APScheduler = apscheduler; # added 2023-02-19
|
2022-02-08 13:02:31 +03:00
|
|
|
asyncio-nats-client = nats-py; # added 2022-02-08
|
2022-12-14 02:40:05 +03:00
|
|
|
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
|
2022-05-09 02:53:28 +03:00
|
|
|
Babel = babel; # added 2022-05-06
|
2023-02-05 10:33:58 +03:00
|
|
|
bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04
|
2022-02-16 00:55:09 +03:00
|
|
|
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
|
2023-02-19 19:24:37 +03:00
|
|
|
BlinkStick = blinkstick; # added 2023-02-19
|
2022-10-14 18:17:20 +03:00
|
|
|
blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29
|
2022-11-05 01:35:51 +03:00
|
|
|
bsblan = python-bsblan; # added 2022-11-04
|
2023-03-03 21:36:49 +03:00
|
|
|
btchip = btchip-python; # added 2023-03-03
|
2023-04-07 19:34:08 +03:00
|
|
|
buildbot = throw "use pkgs.buildbot instead"; # added 2022-04-07
|
|
|
|
buildbot-ui = throw "use pkgs.buildbot-ui instead"; # added 2022-04-07
|
|
|
|
buildbot-full = throw "use pkgs.buildbot-full instead"; # added 2022-04-07
|
|
|
|
buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07
|
|
|
|
buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07
|
|
|
|
buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07
|
2022-10-14 18:17:20 +03:00
|
|
|
bt_proximity = bt-proximity; # added 2021-07-02
|
2023-02-19 19:19:25 +03:00
|
|
|
BTrees = btrees; # added 2023-02-19
|
2022-01-18 17:08:06 +03:00
|
|
|
carrot = throw "carrot has been removed, as its development was discontinued in 2012"; # added 2022-01-18
|
2023-03-02 17:17:40 +03:00
|
|
|
cchardet = faust-cchardet; # added 2023-03-02
|
2021-10-06 04:06:28 +03:00
|
|
|
class-registry = phx-class-registry; # added 2021-10-05
|
2022-10-02 19:05:42 +03:00
|
|
|
codespell = throw "codespell has been promoted to a top-level attribute"; # Added 2022-10-02
|
2023-02-19 19:26:15 +03:00
|
|
|
ColanderAlchemy = colanderalchemy; # added 2023-02-19
|
2023-03-12 21:23:14 +03:00
|
|
|
CommonMark = commonmark; # added 2023-02-1
|
2022-10-14 18:17:20 +03:00
|
|
|
ConfigArgParse = configargparse; # added 2021-03-18
|
2023-05-04 03:20:43 +03:00
|
|
|
coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
|
2022-01-16 23:42:04 +03:00
|
|
|
cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
|
2022-03-23 08:14:53 +03:00
|
|
|
cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
|
2022-05-24 09:41:15 +03:00
|
|
|
dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
|
2022-10-14 18:17:20 +03:00
|
|
|
dateutil = python-dateutil; # added 2021-07-03
|
2022-01-18 18:46:35 +03:00
|
|
|
demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
2023-06-21 17:42:45 +03:00
|
|
|
descartes = throw "descartes has been removed, since it is abandoned and broken"; # added 2023-06-21
|
2022-10-14 18:17:20 +03:00
|
|
|
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
|
|
|
|
dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04
|
2023-01-28 14:48:15 +03:00
|
|
|
dictpath = pathable; # added 2023-01-28
|
2022-10-14 18:17:20 +03:00
|
|
|
diff_cover = diff-cover; # added 2021-07-02
|
|
|
|
discogs_client = discogs-client; # added 2021-07-02
|
|
|
|
djangorestframework-jwt = drf-jwt; # added 2021-07-20
|
2022-07-13 10:38:52 +03:00
|
|
|
django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18
|
2022-03-06 02:55:54 +03:00
|
|
|
django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05
|
2022-03-04 01:35:07 +03:00
|
|
|
django_appconf = django-appconf; # added 2022-03-03
|
2022-11-21 22:02:33 +03:00
|
|
|
django-discover-runner = throw "django-discover-runner was removed because it is no longer maintained."; # added 2022-11-21
|
2021-12-26 03:32:15 +03:00
|
|
|
django_environ = django-environ; # added 2021-12-25
|
2022-01-09 18:24:52 +03:00
|
|
|
django_extensions = django-extensions; # added 2022-01-09
|
2022-05-19 02:46:30 +03:00
|
|
|
django_guardian = django-guardian; # added 2022-05-19
|
2023-05-16 18:42:03 +03:00
|
|
|
django_hijack = django-hijack; # added 2023-05-16
|
2023-05-16 18:43:57 +03:00
|
|
|
django_hijack_admin = django-hijack-admin; # added 2023-05-16
|
2023-06-21 18:02:09 +03:00
|
|
|
django-hijack-admin = throw "django-hijack-admin has been removed, since it is no longer compatible to django-hijack"; # added 2023-06-21
|
2022-04-02 04:14:28 +03:00
|
|
|
django_modelcluster = django-modelcluster; # added 2022-04-02
|
2022-06-18 17:20:28 +03:00
|
|
|
django_reversion = django-reversion; # added 2022-06-18
|
2022-05-19 02:42:02 +03:00
|
|
|
django_polymorphic = django-polymorphic; # added 2022-05-24
|
2021-10-12 00:07:22 +03:00
|
|
|
django_redis = django-redis; # added 2021-10-11
|
2021-10-12 00:59:52 +03:00
|
|
|
django_taggit = django-taggit; # added 2021-10-11
|
2022-10-14 18:17:20 +03:00
|
|
|
dns = dnspython; # added 2017-12-10
|
2021-10-28 11:57:01 +03:00
|
|
|
dogpile_cache = dogpile-cache; # added 2021-10-28
|
2021-11-19 22:25:23 +03:00
|
|
|
dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20
|
2022-02-03 02:09:27 +03:00
|
|
|
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
|
2023-02-19 19:40:18 +03:00
|
|
|
EasyProcess = easyprocess; # added 2023-02-19
|
2022-06-23 00:11:05 +03:00
|
|
|
email_validator = email-validator; # added 2022-06-22
|
2023-06-15 17:55:21 +03:00
|
|
|
ev3dev2 = python-ev3dev2; # added 2023-06-19
|
2023-02-19 19:45:44 +03:00
|
|
|
Fabric = fabric; # addedd 2023-02-19
|
2022-10-15 03:11:20 +03:00
|
|
|
face_recognition = face-recognition; # added 2022-10-15
|
2022-10-15 03:18:25 +03:00
|
|
|
face_recognition_models = face-recognition-models; # added 2022-10-15
|
2022-05-30 06:40:44 +03:00
|
|
|
fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30
|
2022-10-14 18:17:20 +03:00
|
|
|
faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12
|
2023-05-25 21:42:29 +03:00
|
|
|
inherit (super.pkgs) fetchPypi; # added 2023-05-25
|
2022-11-19 15:52:17 +03:00
|
|
|
filemagic = throw "inactive since 2014, so use python-magic instead"; # added 2022-11-19
|
2023-01-20 00:04:35 +03:00
|
|
|
flaskbabel = flask-babel; # added 2023-01-19
|
2022-10-17 21:39:24 +03:00
|
|
|
flask_login = flask-login; # added 2022-10-17
|
2023-02-21 13:37:06 +03:00
|
|
|
flask-restplus = throw "flask-restplus is no longer maintained, use flask-restx instead"; # added 2023-02-21
|
2022-07-20 18:33:12 +03:00
|
|
|
flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
|
2022-04-25 17:12:25 +03:00
|
|
|
flask_testing = flask-testing; # added 2022-04-25
|
2022-05-24 07:09:51 +03:00
|
|
|
flask_wtf = flask-wtf; # added 2022-05-24
|
2023-02-19 19:49:11 +03:00
|
|
|
FormEncode = formencode; # added 2023-02-19
|
2023-06-06 16:34:31 +03:00
|
|
|
foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
|
|
|
|
foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
|
|
|
|
foundationdb60 = throw "foundationdb60 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
|
|
|
|
foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
|
2022-12-01 18:36:01 +03:00
|
|
|
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
|
2023-01-05 01:02:56 +03:00
|
|
|
garages-amsterdam = throw "garages-amsterdam has been renamed odp-amsterdam."; # added 2023-01-04
|
2022-02-06 01:45:40 +03:00
|
|
|
garminconnect-ha = garminconnect; # added 2022-02-05
|
2023-02-14 21:16:30 +03:00
|
|
|
gdtoolkit = throw "gdtoolkit has been promoted to a top-level attribute"; # added 2023-02-15
|
2023-02-19 23:10:40 +03:00
|
|
|
GeoIP = geoip; # added 2023-02-19
|
2022-10-02 18:24:37 +03:00
|
|
|
gigalixir = throw "gigalixir has been promoted to a top-level attribute"; # Added 2022-10-02
|
2022-10-14 18:17:20 +03:00
|
|
|
gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
|
2022-10-28 12:32:54 +03:00
|
|
|
GitPython = gitpython; # added 2022-10-28
|
2021-06-12 20:08:21 +03:00
|
|
|
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
|
2023-02-06 07:56:08 +03:00
|
|
|
glasgow = throw "glasgow has been promoted to a top-level attribute"; # added 2023-02-05
|
2022-10-14 18:17:20 +03:00
|
|
|
google_api_python_client = google-api-python-client; # added 2021-03-19
|
|
|
|
googleapis_common_protos = googleapis-common-protos; # added 2021-03-19
|
2023-02-25 14:40:41 +03:00
|
|
|
google-apitools = throw "google-apitools was removed because it is deprecated and unsupported by upstream"; # added 2023-02-25
|
2023-06-08 00:11:04 +03:00
|
|
|
gpyopt = throw "gpyopt was remove because it's been archived upstream"; # added 2023-06-07
|
2022-07-10 12:03:35 +03:00
|
|
|
graphite_api = throw "graphite_api was removed, because it is no longer maintained"; # added 2022-07-10
|
2022-07-09 10:07:48 +03:00
|
|
|
graphite_beacon = throw "graphite_beacon was removed, because it is no longer maintained"; # added 2022-07-09
|
2022-10-14 18:17:20 +03:00
|
|
|
grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21
|
2022-04-06 18:52:23 +03:00
|
|
|
ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06
|
2022-10-14 18:17:20 +03:00
|
|
|
HAP-python = hap-python; # added 2021-06-01
|
2023-02-13 18:31:13 +03:00
|
|
|
hangups = throw "hangups was removed because Google Hangouts has been shut down"; # added 2023-02-13
|
2021-11-07 10:08:10 +03:00
|
|
|
hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07
|
2022-01-18 17:33:16 +03:00
|
|
|
hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
2023-02-19 19:58:05 +03:00
|
|
|
HTSeq = htseq; # added 2023-02-19
|
2022-04-26 13:19:41 +03:00
|
|
|
hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29
|
2023-04-08 15:00:00 +03:00
|
|
|
ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08
|
2021-10-28 12:05:19 +03:00
|
|
|
IMAPClient = imapclient; # added 2021-10-28
|
2022-08-08 22:55:00 +03:00
|
|
|
imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08
|
2023-06-10 16:25:54 +03:00
|
|
|
image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10
|
2023-07-11 05:22:59 +03:00
|
|
|
imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10
|
2023-04-11 09:33:05 +03:00
|
|
|
intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11
|
2022-05-30 23:19:38 +03:00
|
|
|
ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30
|
2022-07-10 12:42:49 +03:00
|
|
|
influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10
|
2023-07-15 01:17:55 +03:00
|
|
|
itanium_demangler = itanium-demangler; # added 2022-10-17
|
|
|
|
jaraco_classes = jaraco-classes; # added 2023-07-14
|
2023-07-15 01:28:18 +03:00
|
|
|
jaraco_collections = jaraco-collections; # added 2023-07-14
|
2023-07-15 01:22:09 +03:00
|
|
|
jaraco_functools = jaraco-functools; # added 2023-07-14
|
2023-07-15 01:30:21 +03:00
|
|
|
jaraco_itertools = jaraco-itertools; # added 2023-07-14
|
2023-07-15 01:25:51 +03:00
|
|
|
jaraco_text = jaraco-text; # added 2023-07-14
|
2023-02-19 20:11:55 +03:00
|
|
|
JayDeBeApi = jaydebeapi; # added 2023-02-19
|
2022-11-08 01:45:26 +03:00
|
|
|
jinja2_time = jinja2-time; # added 2022-11-07
|
2023-02-19 20:03:04 +03:00
|
|
|
JPype1 = jpype1; # added 2023-02-19
|
2023-06-29 07:43:51 +03:00
|
|
|
jsonschema_3 = throw "jsonschema 3 is neither the latest version nor needed inside nixpkgs anymore"; # added 2023-06-28
|
2021-10-15 13:33:48 +03:00
|
|
|
jupyter_client = jupyter-client; # added 2021-10-15
|
2023-01-05 02:25:47 +03:00
|
|
|
jupyter_core = jupyter-core; # added 2023-01-05
|
2023-01-05 02:48:20 +03:00
|
|
|
jupyter_server = jupyter-server; # added 2023-01-05
|
2023-02-19 20:13:38 +03:00
|
|
|
Kajiki = kajiki; # added 2023-02-19
|
2021-11-26 01:22:42 +03:00
|
|
|
Keras = keras; # added 2021-11-25
|
2023-06-09 23:01:20 +03:00
|
|
|
larynx-train = piper-train; # added 2023-06-09
|
2022-09-16 02:54:14 +03:00
|
|
|
ldap = python-ldap; # added 2022-09-16
|
2021-10-31 16:24:52 +03:00
|
|
|
lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04
|
2022-11-30 05:54:49 +03:00
|
|
|
logilab_astng = throw "logilab-astng has not been released since 2013 and is unmaintained"; # added 2022-11-29
|
2022-11-21 11:00:51 +03:00
|
|
|
logilab_common = logilab-common; # added 2022-11-21
|
2022-05-03 19:04:28 +03:00
|
|
|
loo-py = loopy; # added 2022-05-03
|
2023-02-19 20:28:43 +03:00
|
|
|
Mako = mako; # added 2023-02-19
|
2022-02-14 20:08:09 +03:00
|
|
|
Markups = markups; # added 2022-02-14
|
2023-06-10 18:00:34 +03:00
|
|
|
markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10
|
2023-07-11 05:27:03 +03:00
|
|
|
mask-rcnn = throw "mask-rcnn has been removed as it is unmaintained and its dependency imgaug no longer builds"; # added 2023-07-10
|
2023-02-19 20:18:51 +03:00
|
|
|
MDP = mdp; # added 2023-02-19
|
2022-10-14 18:17:20 +03:00
|
|
|
MechanicalSoup = mechanicalsoup; # added 2021-06-01
|
2022-05-06 05:37:19 +03:00
|
|
|
memcached = python-memcached; # added 2022-05-06
|
2022-04-26 13:19:41 +03:00
|
|
|
mailman = throw "Please use pkgs.mailman"; # added 2022-04-29
|
|
|
|
mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29
|
|
|
|
mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
|
2023-05-19 23:34:03 +03:00
|
|
|
manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20
|
2023-05-19 07:05:09 +03:00
|
|
|
markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19
|
2022-08-12 14:25:56 +03:00
|
|
|
mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12
|
|
|
|
mistune_2_0 = mistune; # added 2022-08-12
|
2023-02-23 02:48:35 +03:00
|
|
|
mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21
|
2022-10-02 16:57:39 +03:00
|
|
|
mutmut = throw "mutmut has been promoted to a top-level attribute"; # added 2022-10-02
|
2022-04-22 09:10:18 +03:00
|
|
|
net2grid = gridnet; # add 2022-04-22
|
2022-02-16 18:01:33 +03:00
|
|
|
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
|
2023-02-21 03:14:56 +03:00
|
|
|
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
|
2022-10-02 18:01:48 +03:00
|
|
|
notifymuch = throw "notifymuch has been promoted to a top-level attribute"; # added 2022-10-02
|
2023-02-19 20:31:21 +03:00
|
|
|
Nuitka = nuitka; # added 2023-02-19
|
2023-03-14 22:46:59 +03:00
|
|
|
ntlm-auth = throw "ntlm-auth has been removed, because it relies on the md4 implementation provided by openssl. Use pyspnego instead.";
|
2022-05-28 19:53:49 +03:00
|
|
|
ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
|
2022-12-29 13:36:39 +03:00
|
|
|
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
|
2021-06-10 12:53:03 +03:00
|
|
|
pam = python-pam; # added 2020-09-07.
|
2021-10-28 12:03:31 +03:00
|
|
|
PasteDeploy = pastedeploy; # added 2021-10-07
|
2022-04-12 22:59:32 +03:00
|
|
|
pathpy = path; # added 2022-04-12
|
2023-06-29 00:03:00 +03:00
|
|
|
pdfposter = throw "pdfposter was promoted to a top-level attribute"; # Added 2023-06-29
|
2022-05-25 07:20:00 +03:00
|
|
|
pdfminer = pdfminer-six; # added 2022-05-25
|
2022-04-12 23:38:45 +03:00
|
|
|
pep257 = pydocstyle; # added 2022-04-12
|
2023-01-09 16:43:47 +03:00
|
|
|
poetry = throw "poetry was promoted to a top-level attribute, use poetry-core to build Python packages"; # added 2023-01-09
|
2022-10-02 16:29:31 +03:00
|
|
|
poetry2conda = throw "poetry2conda was promoted to a top-level attribute"; # Added 2022-10-02
|
2022-05-29 13:25:56 +03:00
|
|
|
poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29
|
2022-04-26 13:19:41 +03:00
|
|
|
postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29
|
2021-10-28 12:03:31 +03:00
|
|
|
powerlineMemSegment = powerline-mem-segment; # added 2021-10-08
|
2022-10-14 18:17:20 +03:00
|
|
|
privacyidea = throw "privacyidea has been renamed to pkgs.privacyidea"; # added 2021-06-20
|
|
|
|
prometheus_client = prometheus-client; # added 2021-06-10
|
|
|
|
prompt_toolkit = prompt-toolkit; # added 2021-07-22
|
2022-11-06 18:05:55 +03:00
|
|
|
protonup = protonup-ng; # Added 2022-11-06
|
2021-11-08 17:23:14 +03:00
|
|
|
pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08
|
2022-10-15 02:35:53 +03:00
|
|
|
pushbullet = pushbullet-py; # Added 2022-10-15
|
2023-02-19 20:35:40 +03:00
|
|
|
Pweave = pweave; # added 2023-02-19
|
2023-07-08 00:41:58 +03:00
|
|
|
py-radix = throw "py-radix has been removed, since it abandoned"; # added 2023-07-07
|
2023-02-02 02:54:06 +03:00
|
|
|
pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02
|
2023-04-23 22:27:36 +03:00
|
|
|
pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23
|
2023-06-20 13:04:34 +03:00
|
|
|
pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20
|
2022-06-02 03:09:31 +03:00
|
|
|
pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
|
2023-06-20 15:42:26 +03:00
|
|
|
pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20
|
2023-02-19 20:42:00 +03:00
|
|
|
PyGithub = pygithub; # added 2023-02-19
|
2022-01-16 01:19:32 +03:00
|
|
|
pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
|
2022-01-18 19:06:04 +03:00
|
|
|
pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
2022-11-14 11:55:44 +03:00
|
|
|
pychef = throw "pychef has been removed because it's been archived upstream and abandoned since 2017."; # added 2022-11-14
|
2023-02-19 20:38:13 +03:00
|
|
|
PyChromecast = pychromecast; # added 2023-02-19
|
2022-05-27 23:26:46 +03:00
|
|
|
pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28
|
2023-02-12 14:39:18 +03:00
|
|
|
pyflunearyou = pyoutbreaksnearme; # added 2023-02-11
|
2022-06-07 02:05:41 +03:00
|
|
|
pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07
|
2022-07-07 15:50:21 +03:00
|
|
|
pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07
|
2022-12-22 18:30:58 +03:00
|
|
|
PyICU = pyicu; # Added 2022-12-22
|
2022-08-28 13:08:33 +03:00
|
|
|
pyjson5 = json5; # added 2022-08-28
|
2022-10-14 18:17:20 +03:00
|
|
|
pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
|
2022-06-23 00:19:04 +03:00
|
|
|
PyLD = pyld; # added 2022-06-22
|
2023-06-20 16:01:26 +03:00
|
|
|
pymatgen-lammps = throw "pymatgen-lammps has been removed because it is unmaintained and broken"; # added 2023-06-20
|
2022-06-05 11:43:15 +03:00
|
|
|
pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
|
2022-10-14 18:17:20 +03:00
|
|
|
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
|
2023-02-19 20:46:30 +03:00
|
|
|
PyMVGLive = pymvglive; # added 2023-02-19
|
2023-02-25 02:26:25 +03:00
|
|
|
pyramid_hawkauth = throw "pyramid_hawkauth has been removed because it is no longer maintained"; # added 2023-02-2
|
2023-06-07 00:41:31 +03:00
|
|
|
pyramid_jinja2 = pyramid-jinja2; # added 2023-06-06
|
2022-05-24 06:14:51 +03:00
|
|
|
pyreadability = readability-lxml; # added 2022-05-24
|
2023-06-20 16:17:21 +03:00
|
|
|
pyres = throw "pyres has been removed, since it is abandoned and broken"; # added 2023-06-20
|
2022-07-16 13:59:28 +03:00
|
|
|
pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-ipdb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-ipset = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-ndb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-nftables = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-nslink = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
|
|
|
pyroute2-protocols = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
|
2023-02-19 21:29:04 +03:00
|
|
|
Pyro4 = pyro4; # added 2023-02-19
|
2023-02-19 21:30:11 +03:00
|
|
|
Pyro5 = pyro5; # added 2023-02-19
|
2023-02-19 20:49:38 +03:00
|
|
|
PyRSS2Gen = pyrss2gen; # added 2023-02-19
|
2023-05-19 16:24:50 +03:00
|
|
|
pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
|
2021-10-22 16:36:24 +03:00
|
|
|
pysmart-smartx = pysmart; # added 2021-10-22
|
2023-02-26 23:58:25 +03:00
|
|
|
pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28
|
2022-05-30 01:12:40 +03:00
|
|
|
pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
|
2023-02-19 20:55:25 +03:00
|
|
|
PyStemmer = pystemmer; # added 2023-02-19
|
2022-02-10 03:09:07 +03:00
|
|
|
pytest_6 = pytest; # added 2022-02-10
|
2022-10-14 18:17:20 +03:00
|
|
|
pytestcov = pytest-cov; # added 2021-01-04
|
2023-06-22 15:55:09 +03:00
|
|
|
pytest-ordering = throw "pytest-ordering has been removed, since it is no longer maintained and broken"; # added 2023-06-22
|
2022-10-14 18:17:20 +03:00
|
|
|
pytest-pep8 = pytestpep8; # added 2021-01-04
|
2022-04-12 23:38:45 +03:00
|
|
|
pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12
|
2022-03-09 19:48:52 +03:00
|
|
|
pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09
|
2023-06-22 16:31:33 +03:00
|
|
|
pytest-sanic = throw "pytest-sanic has been removed because it is unmaintained and broken"; # added 2023-06-22
|
2022-10-14 18:17:20 +03:00
|
|
|
pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10
|
|
|
|
pytestquickcheck = pytest-quickcheck; # added 2021-07-20
|
|
|
|
pytestrunner = pytest-runner; # added 2021-01-04
|
2023-04-06 00:40:46 +03:00
|
|
|
python-forecastio = throw "python-forecastio has been removed, as the Dark Sky service was shut down."; # added 2023-04-05
|
2021-11-12 09:03:39 +03:00
|
|
|
python-igraph = igraph; # added 2021-11-11
|
2023-05-16 11:51:52 +03:00
|
|
|
python_keyczar = throw "python_keyczar has been removed because it's been archived upstream and deprecated"; # added 2023-05-16
|
2022-10-14 18:17:20 +03:00
|
|
|
python-lz4 = lz4; # added 2018-06-01
|
2022-05-07 14:05:40 +03:00
|
|
|
python_magic = python-magic; # added 2022-05-07
|
2021-10-31 16:22:53 +03:00
|
|
|
python_mimeparse = python-mimeparse; # added 2021-10-31
|
2022-08-04 01:55:25 +03:00
|
|
|
python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03
|
2022-12-31 06:57:59 +03:00
|
|
|
python-Levenshtein = levenshtein;
|
2023-07-03 11:48:19 +03:00
|
|
|
python-pushover = throw "python-pushover has been removed, since it is unmaintained and is broken"; # added 2023-07-03
|
2021-09-11 13:16:44 +03:00
|
|
|
python-subunit = subunit; # added 2021-09-10
|
2022-10-14 18:17:20 +03:00
|
|
|
pytest_xdist = pytest-xdist; # added 2021-01-04
|
|
|
|
python_simple_hipchat = python-simple-hipchat; # added 2021-07-21
|
2023-04-11 10:02:10 +03:00
|
|
|
pytoml = throw "pytoml has been removed because it is unmaintained and is superseded by toml"; # Added 2023-04-11
|
2022-08-30 18:41:22 +03:00
|
|
|
pytorch = torch; # added 2022-09-30
|
|
|
|
pytorch-bin = torch-bin; # added 2022-09-30
|
|
|
|
pytorchWithCuda = torchWithCuda; # added 2022-09-30
|
|
|
|
pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30
|
2022-03-07 23:02:23 +03:00
|
|
|
pytwitchapi = twitchapi; # added 2022-03-07
|
2023-05-19 14:02:38 +03:00
|
|
|
pyvcf = throw "pyvcf has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2023-05-19
|
2023-02-19 21:26:55 +03:00
|
|
|
PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
|
2023-07-01 07:08:28 +03:00
|
|
|
pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01
|
2022-10-14 18:17:20 +03:00
|
|
|
qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
|
2023-02-19 21:31:48 +03:00
|
|
|
Quandl = quandl; # added 2023-02-19
|
2022-01-12 20:51:18 +03:00
|
|
|
qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
|
2023-07-01 08:31:30 +03:00
|
|
|
rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01
|
2021-11-06 03:08:08 +03:00
|
|
|
rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05
|
2023-04-12 00:21:01 +03:00
|
|
|
retworkx = rustworkx; # added 2023-05-14
|
2022-11-16 10:11:19 +03:00
|
|
|
repeated_test = repeated-test; # added 2022-11-15
|
2022-02-12 16:33:27 +03:00
|
|
|
requests_oauthlib = requests-oauthlib; # added 2022-02-12
|
2022-10-14 18:17:20 +03:00
|
|
|
requests_toolbelt = requests-toolbelt; # added 2017-09-26
|
2022-11-28 04:24:37 +03:00
|
|
|
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
|
2023-05-03 21:18:47 +03:00
|
|
|
rl-coach = "rl-coach was removed because the project is discontinued and was archived by upstream"; # added 2023-05-03
|
2022-01-15 14:25:05 +03:00
|
|
|
roboschool = throw "roboschool is deprecated in favor of PyBullet and has been removed"; # added 2022-01-15
|
2022-10-14 18:17:20 +03:00
|
|
|
ROPGadget = ropgadget; # added 2021-07-06
|
|
|
|
rotate-backups = throw "rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01
|
2021-11-01 23:58:01 +03:00
|
|
|
ruamel_base = ruamel-base; # added 2021-11-01
|
2021-11-01 23:59:40 +03:00
|
|
|
ruamel_yaml = ruamel-yaml; # added 2021-11-01
|
2021-11-02 00:00:09 +03:00
|
|
|
ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01
|
2023-06-24 00:11:14 +03:00
|
|
|
inherit (super.pkgs) ruff-lsp; # added 2023-06-23
|
2023-05-03 11:07:12 +03:00
|
|
|
runway-python = throw "SDK has been deprecated and was archived by upstream"; # added 2023-05-03
|
2022-04-20 03:46:52 +03:00
|
|
|
sapi-python-client = kbcstorage; # added 2022-04-20
|
2023-05-14 14:04:10 +03:00
|
|
|
scikitimage = scikit-image; # added 2023-05-14
|
2022-10-14 18:17:20 +03:00
|
|
|
scikitlearn = scikit-learn; # added 2021-07-21
|
|
|
|
selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10
|
2023-06-24 00:31:59 +03:00
|
|
|
sequoia = throw "python3Packages.sequoia was replaced by pysequoia - built from a dedicated repository, with a new API."; # added 2023-06-24
|
2022-10-14 18:17:20 +03:00
|
|
|
setuptools_scm = setuptools-scm; # added 2021-06-03
|
2022-05-21 04:44:48 +03:00
|
|
|
sharkiqpy = sharkiq; # added 2022-05-21
|
2023-05-16 15:27:07 +03:00
|
|
|
ssh-mitm = throw "ssh-mitm was removed in favor of the top-level ssh-mitm"; # added 2023-05-09
|
2022-10-14 18:17:20 +03:00
|
|
|
smart_open = smart-open; # added 2021-03-14
|
|
|
|
smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
|
2023-02-02 03:27:23 +03:00
|
|
|
somecomfort = throw "somecomfort was removed because Home Assistant switched to aiosomecomfort"; # added 2023-02-01
|
2022-10-14 18:17:20 +03:00
|
|
|
SPARQLWrapper = sparqlwrapper;
|
2023-02-24 07:20:00 +03:00
|
|
|
sphinx-jquery = sphinxcontrib-jquery; # added 2023-02-24
|
2022-08-03 19:30:10 +03:00
|
|
|
sphinx_rtd_theme = sphinx-rtd-theme; # added 2022-08-03
|
2023-02-28 03:42:37 +03:00
|
|
|
sphinxcontrib-autoapi = sphinx-autoapi; # added 2023-02=28
|
2022-10-14 18:17:20 +03:00
|
|
|
sphinxcontrib_plantuml = sphinxcontrib-plantuml; # added 2021-08-02
|
2023-07-03 11:12:57 +03:00
|
|
|
sphinx-navtree = throw "sphinx-navtree has been removed since it is not compatible with sphinx 3.3 and unmaintained"; # added 2023-07-03
|
2021-10-28 11:59:03 +03:00
|
|
|
sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28
|
2022-04-14 23:29:18 +03:00
|
|
|
SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23
|
2023-02-27 16:20:05 +03:00
|
|
|
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
|
2023-02-27 16:54:57 +03:00
|
|
|
suseapi = throw "suseapi has been removed because it is no longer maintained"; # added 2023-02-27
|
2021-11-26 14:08:35 +03:00
|
|
|
tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25
|
|
|
|
tensorflow-build_2 = tensorflow-build; # added 2021-11-25
|
2023-01-17 05:09:35 +03:00
|
|
|
tensorflow-estimator = tensorflow-estimator-bin; # added 2023-01-17
|
2021-11-26 14:08:35 +03:00
|
|
|
tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25
|
2022-03-07 01:46:59 +03:00
|
|
|
tensorflow-tensorboard = tensorboard; # added 2022-03-06
|
2021-11-26 14:08:35 +03:00
|
|
|
tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
|
2023-02-19 22:41:23 +03:00
|
|
|
Theano = theano; # added 2023-02-19
|
|
|
|
TheanoWithCuda = theanoWithCuda; # added 2023-02-19
|
|
|
|
TheanoWithoutCuda = theanoWithoutCuda; # added 2023-02-19
|
2023-02-27 16:35:05 +03:00
|
|
|
transip = throw "transip has been removed because it is no longer maintained. TransIP SOAP V5 API was marked as deprecated"; # added 2023-02-27
|
2022-11-20 08:48:33 +03:00
|
|
|
tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19
|
2022-10-14 18:17:20 +03:00
|
|
|
tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
|
2022-05-30 05:40:49 +03:00
|
|
|
types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30
|
2022-05-30 05:41:14 +03:00
|
|
|
types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
|
2022-12-01 22:09:23 +03:00
|
|
|
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
|
2022-12-14 02:40:05 +03:00
|
|
|
uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13
|
|
|
|
uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13
|
2023-07-08 00:42:30 +03:00
|
|
|
validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07
|
2023-01-08 07:17:59 +03:00
|
|
|
virtual-display = throw "virtual-display has been renamed to PyVirtualDisplay"; # added 2023-01-07
|
2022-11-14 06:27:14 +03:00
|
|
|
Wand = wand; # added 2022-11-13
|
2023-05-19 23:35:09 +03:00
|
|
|
wasm = throw "wasm has been removed because it no longer builds and is unmaintained"; # added 2023-05-20
|
2021-10-28 12:03:31 +03:00
|
|
|
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
|
2022-12-01 21:22:51 +03:00
|
|
|
weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01
|
2022-05-29 14:55:03 +03:00
|
|
|
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
|
2022-10-14 18:17:20 +03:00
|
|
|
websocket_client = websocket-client; # added 2021-06-15
|
2023-05-22 05:48:51 +03:00
|
|
|
word2vec = throw "word2vec has been removed because it is abandoned"; # added 2023-05-22
|
2023-03-20 10:44:14 +03:00
|
|
|
wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxPython_4_2 instead"; # added 2023-03-19
|
|
|
|
wxPython_4_1 = throw "wxPython_4_1 has been removed, use wxPython_4_2 instead"; # added 2023-03-19
|
2023-02-19 22:45:59 +03:00
|
|
|
WSME = wsme; # added 2023-02-19
|
2021-12-31 17:52:42 +03:00
|
|
|
xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
|
2023-02-19 22:51:36 +03:00
|
|
|
XlsxWriter = xlsxwriter; # added 2023-02-19
|
2023-02-19 22:58:58 +03:00
|
|
|
Yapsy = yapsy; # added 2023-02-19
|
2023-06-20 11:44:28 +03:00
|
|
|
zake = throw "zake has been removed because it is abandoned"; # added 2023-06-20
|
2022-10-14 18:17:20 +03:00
|
|
|
zc-buildout221 = zc-buildout; # added 2021-07-21
|
|
|
|
zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
|
2021-03-15 03:00:14 +03:00
|
|
|
})
|