core/pkgs/by-name/ma/maturin/pyo3-test/default.nix
2024-05-13 11:34:52 -04:00

13 lines
207 B
Nix

{ python3
, rustPlatform
}:
python3.pkgs.callPackage ./generic.nix {
buildAndTestSubdir = "examples/word-count";
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
}