core/pkgs/by-name/ma/maturin/pyo3-test/default.nix
2024-06-30 09:16:52 +01:00

11 lines
206 B
Nix

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