0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixos/taskserver: port helper-tool to Python 3

This commit is contained in:
pacien 2022-02-11 03:04:34 +01:00
parent 086e8066f5
commit 9013352e3f
2 changed files with 6 additions and 6 deletions

View file

@ -106,7 +106,7 @@ let
certtool = "${pkgs.gnutls.bin}/bin/certtool";
nixos-taskserver = with pkgs.python2.pkgs; buildPythonApplication {
nixos-taskserver = with pkgs.python3.pkgs; buildPythonApplication {
name = "nixos-taskserver";
src = pkgs.runCommand "nixos-taskserver-src" { preferLocalBuild = true; } ''