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; };
|
|
})
|
|
];
|
|
}
|