mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00
14 lines
277 B
Nix
14 lines
277 B
Nix
![]() |
{ lib, poetry2nix, python39, runCommand }:
|
||
|
let
|
||
|
env = poetry2nix.mkPoetryEnv {
|
||
|
python = python39;
|
||
|
pyproject = ./pyproject.toml;
|
||
|
poetrylock = ./poetry.lock;
|
||
|
};
|
||
|
in
|
||
|
runCommand "pytest_randomly"
|
||
|
{ } ''
|
||
|
${env}/bin/python -c 'import pytest_randomly'
|
||
|
touch $out
|
||
|
''
|