treefmt / nix fmt (pull_request) Successful in 3s
test ebook search / test-ebook-search (pull_request) Failing after 8h50m21s
pytest / pytest (pull_request) Failing after 8h50m22s
build_systems / build-rhapsody-in-green (pull_request) Failing after 8h50m23s
build_systems / build-portal-1 (pull_request) Failing after 8h50m24s
build_systems / build-jeeves (pull_request) Failing after 8h50m24s
build_systems / build-brain (pull_request) Failing after 8h50m24s
build_systems / build-bob (pull_request) Failing after 8h50m24s
16 lines
597 B
Nix
16 lines
597 B
Nix
_final: prev:
|
|
(import ./abseil { inherit prev; })
|
|
// {
|
|
gnutls = import ./gnutls { inherit (prev) gnutls; };
|
|
prometheus = import ./prometheus { inherit (prev) prometheus; };
|
|
|
|
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
|
|
(_pythonFinal: pythonPrev: {
|
|
backrefs = import ./backrefs { inherit (pythonPrev) backrefs; };
|
|
pytest-xdist = import ./pytest-xdist { inherit (pythonPrev) pytest-xdist; };
|
|
sentry-sdk = import ./sentry-sdk { inherit (pythonPrev) sentry-sdk; };
|
|
torchcodec = import ./torchcodec { inherit (pythonPrev) torchcodec; };
|
|
})
|
|
];
|
|
}
|