Files
clan-core/pkgs/generate-test-vars/default.nix
2025-04-21 15:18:14 +02:00

15 lines
287 B
Nix

{
buildPythonApplication,
python,
clan-cli,
}:
buildPythonApplication {
name = "generate-test-vars";
src = ./.;
format = "pyproject";
dependencies = [ (python.pkgs.toPythonModule clan-cli) ];
nativeBuildInputs = [
(python.withPackages (ps: [ ps.setuptools ]))
];
}