poetry2nix/tests/pylint-django-pre-2-5-4/default.nix
2023-12-06 11:50:46 +13:00

10 lines
196 B
Nix

{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "pylint-django-test" { } ''
${env}/bin/python -c 'import pylint_django'
touch $out
''