treefmt / nix fmt (pull_request) Successful in 4s
build_systems / prebuild-common-x86-64-v3 (pull_request) Successful in 21s
build_systems / build-portal-1 (pull_request) Successful in 17s
build_systems / build-brain (pull_request) Successful in 43s
build_systems / build-bob (pull_request) Successful in 43s
test ebook search / test-ebook-search (pull_request) Successful in 1m8s
build_systems / build-rhapsody-in-green (pull_request) Successful in 55s
build_systems / build-jeeves (pull_request) Successful in 1m6s
it was only required for rhapsody-in-green
15 lines
513 B
Nix
15 lines
513 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: {
|
|
pytest-xdist = import ./pytest-xdist { inherit (pythonPrev) pytest-xdist; };
|
|
scipy = import ./scipy { inherit (pythonPrev) scipy; };
|
|
# sentry-sdk = import ./sentry-sdk { inherit (pythonPrev) sentry-sdk; };
|
|
})
|
|
];
|
|
}
|