summary refs log tree commit diff
path: root/pkgs/development/python-modules/setuptools-rust/pyo3-test/default.nix
blob: 31730d6ff2dc7e042694c39d08ab8ae156f72cb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ callPackage
, rustPlatform
, setuptools-rust
}:

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";

  nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [
    cargoSetupHook
    rust.cargo
    rust.rustc
  ]);

  preConfigure = ''
    # sourceRoot puts Cargo.lock in the wrong place due to the
    # example setup.
    cd examples/word-count
  '';
}