diff --git a/pkgs/development/python-modules/jsonfield/default.nix b/pkgs/development/python-modules/jsonfield/default.nix deleted file mode 100644 index b6139135a560..000000000000 --- a/pkgs/development/python-modules/jsonfield/default.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ - lib, - fetchPypi, - buildPythonPackage, - django, - pytestCheckHook, - pytest-django, -}: - -buildPythonPackage rec { - pname = "jsonfield"; - version = "3.2.0"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - sha256 = "sha256-ylOHG8MwiuT0zdw7T5ntXG/Gq7GDL7+0mbxtpWbHDko="; - }; - - nativeCheckInputs = [ - pytestCheckHook - pytest-django - ]; - - preCheck = "export DJANGO_SETTINGS_MODULE=tests.settings"; - - propagatedBuildInputs = [ django ]; - - meta = with lib; { - description = "Reusable model field that allows you to store validated JSON, automatically handling serialization to and from the database"; - homepage = "https://github.com/rpkilby/jsonfield/"; - license = licenses.mit; - maintainers = with maintainers; [ mrmebelman ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index eade3abfb113..7a6432e7b08e 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -217,6 +217,7 @@ mapAliases { jinja2_pluralize = throw "'jinja2_pluralize' has been renamed to/replaced by 'jinja2-pluralize'"; # Converted to throw 2025-10-29 jinja2_time = throw "'jinja2_time' has been renamed to/replaced by 'jinja2-time'"; # Converted to throw 2025-10-29 JPype1 = throw "'JPype1' has been renamed to/replaced by 'jpype1'"; # Converted to throw 2025-10-29 + jsonfield = throw "'jsonfield' has been removed as it was broken and deprecated upstream. Consider using Django's native `JSONField` instead."; # Added 2025-11-08 jsonpath_rw = throw "'jsonpath_rw' has been renamed to/replaced by 'jsonpath-rw'"; # Converted to throw 2025-10-29 jupyter-server-ydoc = throw "'jupyter-server-ydoc' has been renamed to/replaced by 'jupyter-collaboration'"; # Converted to throw 2025-10-29 jupyter_client = throw "'jupyter_client' has been renamed to/replaced by 'jupyter-client'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea6e1713c941..66533629a1ad 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7618,8 +7618,6 @@ self: super: with self; { jsonfeed = callPackage ../development/python-modules/jsonfeed { }; - jsonfield = callPackage ../development/python-modules/jsonfield { }; - jsonformatter = callPackage ../development/python-modules/jsonformatter { }; jsonlines = callPackage ../development/python-modules/jsonlines { };