about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/rust/maturin/pyo3-test/default.nix
blob: 7f79c8565d23684e833df68b942ebb8065e03d95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ python3
, rustPlatform
}:

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

  nativeBuildInputs = with rustPlatform; [
    cargoSetupHook
    maturinBuildHook
  ];
}