mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00
10 lines
280 B
Nix
10 lines
280 B
Nix
{ poetry2nix, python3, runCommand }:
|
|
let
|
|
py = poetry2nix.mkPoetryPackages {
|
|
python = python3;
|
|
projectDir = ./.;
|
|
preferWheels = true;
|
|
};
|
|
isWheelAttr = py.python.pkgs.maturin.src.isWheel or false;
|
|
in
|
|
assert isWheelAttr; runCommand "prefer-wheels" { } "touch $out"
|