mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-09 12:06:40 -04:00
11 lines
199 B
Nix
11 lines
199 B
Nix
![]() |
{ poetry2nix, runCommand }:
|
||
|
let
|
||
|
env = poetry2nix.mkPoetryEnv {
|
||
|
projectDir = ./.;
|
||
|
};
|
||
|
in
|
||
|
runCommand "matplotlib-post-3-7-test" { } ''
|
||
|
${env}/bin/python -c 'import matplotlib'
|
||
|
touch $out
|
||
|
''
|