core/pkgs/by-name/ma/maturin/pyo3-test/default.nix

13 lines
207 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ python3
, rustPlatform
}:
python3.pkgs.callPackage ./generic.nix {
buildAndTestSubdir = "examples/word-count";
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
}