diff --git a/pkgs/development/python-modules/betterproto-fw/default.nix b/pkgs/development/python-modules/betterproto-fw/default.nix deleted file mode 100644 index 979710d92747..000000000000 --- a/pkgs/development/python-modules/betterproto-fw/default.nix +++ /dev/null @@ -1,64 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - - # build-system - pdm-backend, - - # dependencies - grpclib, - python-dateutil, - typing-extensions, - - # optional dependencies - jinja2, - ruff, - betterproto-rust-codec, -}: - -buildPythonPackage rec { - pname = "betterproto-fw"; - version = "2.0.3"; - pyproject = true; - - # Not available on Github - src = fetchPypi { - pname = "betterproto_fw"; - inherit version; - hash = "sha256-ut5GchUiTygHhC2hj+gSWKCoVnZrrV8KIKFHTFzba5M="; - }; - - build-system = [ - pdm-backend - ]; - - dependencies = [ - grpclib - python-dateutil - typing-extensions - ]; - - optional-dependencies = { - compiler = [ - jinja2 - ruff - ]; - rust-codec = [ - betterproto-rust-codec - ]; - }; - - doCheck = false; # no tests supplied - - pythonImportsCheck = [ - "betterproto" - ]; - - meta = { - description = "Fork of betterproto used in fireworks-ai"; - homepage = "https://pypi.org/project/betterproto-fw/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sarahec ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index bc2ca2fbf3c8..312550930544 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -112,6 +112,7 @@ mapAliases { beancount_docverif = throw "'beancount_docverif' has been renamed to/replaced by 'beancount-docverif'"; # Converted to throw 2025-10-29 beets-stable = lib.warn "beets-stable was aliased to beets, since upstream releases are frequent nowadays" self.beets; # added 2025-10-16 beets-unstable = lib.warn "beets-unstable was aliased to beets, since upstream releases are frequent nowadays" self.beets; # added 2025-10-16 + betterproto-fw = throw "'betterproto-fw' has been removed as it is not longer required by fireworks-ai"; # Added 2026-06-09 bimmer-connected = throw "'bimmer-connected' was removed because BMW started blocking third parties"; # added 2026-03-30 bip_utils = throw "'bip_utils' has been renamed to/replaced by 'bip-utils'"; # Converted to throw 2025-10-29 bjoern = throw "'bjoern' has been removed, as the upstream repository was unmaintained and it was using libraries with severe security issues."; # Added 2025-09-01 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8f7a5757e3d9..43b5c77ccd11 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2030,8 +2030,6 @@ self: super: with self; { betterproto = callPackage ../development/python-modules/betterproto { }; - betterproto-fw = callPackage ../development/python-modules/betterproto-fw { }; - betterproto-rust-codec = callPackage ../development/python-modules/betterproto-rust-codec { }; bezier = callPackage ../development/python-modules/bezier { };