about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2024-04-18 13:27:30 +0200
committerAnthony Roussel <anthony@roussel.dev>2024-04-18 13:27:30 +0200
commitebe855c855b0dcd00774232f44d48d575b95be81 (patch)
tree0c05502383447ba8c2e017bd8ab8262a9efdc7f6 /pkgs/applications
parenta33764258dc33643ede59836bcbe890ead31cc20 (diff)
gns3-server: replace `python3.pkgs` by `python3Packages`
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/gns3/server.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/gns3/server.nix b/pkgs/applications/networking/gns3/server.nix
index 24224ae0526d7..3e4764a145024 100644
--- a/pkgs/applications/networking/gns3/server.nix
+++ b/pkgs/applications/networking/gns3/server.nix
@@ -4,7 +4,7 @@
 }:
 
 { lib
-, python3
+, python3Packages
 , fetchFromGitHub
 , pkgsStatic
 , stdenv
@@ -14,7 +14,7 @@
 , gns3-server
 }:
 
-python3.pkgs.buildPythonApplication {
+python3Packages.buildPythonApplication {
   pname = "gns3-server";
   inherit version;
 
@@ -30,7 +30,7 @@ python3.pkgs.buildPythonApplication {
     cp ${pkgsStatic.busybox}/bin/busybox gns3server/compute/docker/resources/bin/busybox
   '';
 
-  propagatedBuildInputs = with python3.pkgs; [
+  propagatedBuildInputs = with python3Packages; [
     aiofiles
     aiohttp
     aiohttp-cors
@@ -67,7 +67,7 @@ python3.pkgs.buildPythonApplication {
     export HOME=$(mktemp -d)
   '';
 
-  checkInputs = with python3.pkgs; [
+  checkInputs = with python3Packages; [
     pytest-aiohttp
     pytest-rerunfailures
     (pytestCheckHook.override { pytest = pytest_7; })