3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rust/maturin/pyo3-test/default.nix
Daniël de Kok cf66c08b84 python3Packages.setuptools-rust: do no mix Python versions in tests
The passthru test used python3Packages, mixing different Python
version when testing on a Python version different that the python3
alias.
2021-03-20 08:50:28 +01:00

13 lines
207 B
Nix

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