about summary refs log tree commit diff
path: root/pkgs/by-name/ma/maturin/pyo3-test/default.nix
blob: 140d7154c6b6e1365f51b5284e30eb9ee7e4638f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ python3, rustPlatform }:

python3.pkgs.callPackage ./generic.nix {
  buildAndTestSubdir = "examples/word-count";

  nativeBuildInputs = with rustPlatform; [
    cargoSetupHook
    maturinBuildHook
  ];
}