f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
10 lines
206 B
Nix
10 lines
206 B
Nix
{ python3, rustPlatform }:
|
|
|
|
python3.pkgs.callPackage ./generic.nix {
|
|
buildAndTestSubdir = "examples/word-count";
|
|
|
|
nativeBuildInputs = with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
];
|
|
}
|