diff options
| author | Doron Behar <doron.behar@gmail.com> | 2020-04-06 20:14:08 +0300 |
|---|---|---|
| committer | Doron Behar <doron.behar@gmail.com> | 2020-04-06 20:14:08 +0300 |
| commit | a996d7c4a9fa9a74fd7569dbdf489f9afcd4a18e (patch) | |
| tree | 43815e85ab7fc297ec8e86e5208822f21f58e21a | |
| parent | Merge pull request #83748 from veprbl/pr/python_docker_dontUseSetuptoolsCheck (diff) | |
| download | nixpkgs-a996d7c4a9fa9a74fd7569dbdf489f9afcd4a18e.tar.gz | |
nyx: use python3 by default
| -rw-r--r-- | pkgs/tools/networking/nyx/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/nyx/default.nix b/pkgs/tools/networking/nyx/default.nix index 901187c6abb9..a7d788d7c364 100644 --- a/pkgs/tools/networking/nyx/default.nix +++ b/pkgs/tools/networking/nyx/default.nix @@ -1,6 +1,6 @@ -{ lib, pythonPackages }: +{ lib, python3Packages }: -with pythonPackages; +with python3Packages; buildPythonApplication rec { pname = "nyx"; |
