2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
callPackage,
|
|
|
|
cargo,
|
|
|
|
rustPlatform,
|
|
|
|
rustc,
|
|
|
|
setuptools-rust,
|
2021-03-19 17:17:44 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
callPackage ../../../tools/rust/maturin/pyo3-test/generic.nix {
|
|
|
|
# Isolated builds break for this package, because PyO3 is not
|
|
|
|
# in the build root of the Python Package:
|
|
|
|
#
|
|
|
|
# https://github.com/pypa/pip/issues/6276
|
|
|
|
#
|
|
|
|
format = "setuptools";
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs =
|
|
|
|
[ setuptools-rust ]
|
|
|
|
++ [
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
];
|
2021-03-19 17:17:44 +00:00
|
|
|
|
2021-04-12 18:23:04 +00:00
|
|
|
preConfigure = ''
|
|
|
|
# sourceRoot puts Cargo.lock in the wrong place due to the
|
|
|
|
# example setup.
|
|
|
|
cd examples/word-count
|
|
|
|
'';
|
2021-03-19 17:17:44 +00:00
|
|
|
}
|