nb-cli: unbreak by relaxin watchfiles (#403695)

This commit is contained in:
Peder Bergebakken Sundt
2025-05-03 12:21:05 +02:00
committed by GitHub
+13 -1
View File
@@ -17,6 +17,10 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-HZey1RVpx/fHNxdEue1LczYbwYUxEb3i3fHpkKHhn+8=";
};
pythonRelaxDeps = [
"watchfiles"
];
build-system = [
python3.pkgs.babel
python3.pkgs.pdm-backend
@@ -43,7 +47,15 @@ python3.pkgs.buildPythonApplication rec {
# no test
doCheck = false;
pythonImportsCheck = [ "nb_cli" ];
pythonImportsCheck = [
"nb_cli"
"nb_cli.cli"
"nb_cli.compat"
"nb_cli.config"
"nb_cli.handlers"
"nb_cli.i18n"
"nb_cli.log"
];
passthru.tests = {
version = testers.testVersion { package = nb-cli; };