python3Packages:betterproto-fw: drop
Private fork no longer required by fireworks-ai.
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user