From c37dfc8ab5cab2fcbf88d74b5cc63b3d245c0af1 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Fri, 24 Jun 2022 17:28:46 +0300 Subject: [PATCH] define python3 --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 01ebcc5..3d3035a 100644 --- a/default.nix +++ b/default.nix @@ -3,7 +3,7 @@ let in self: super: rec { - python = super.python.override { + python3 = super.python.override { packageOverrides = python-self: python-super: { strawberry_graphql = python-super.buildPythonPackage rec { pname = "strawberry-graphql"; @@ -29,7 +29,7 @@ self: super: rec { }; }; }; - pythonPackages = python.pkgs; + pythonPackages = python3.pkgs; selfprivacy-api = super.callPackage ./pkgs/selfprivacy-api { nixpkgs = pkgs; pythonPkgs = pythonPackages;