From 822f480922fe2a0a38bc9de429cb2457b2eda96f Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sun, 30 Oct 2016 23:08:47 +0100 Subject: [PATCH] python: adding a back python27Full to make pypi2nix work with old and new nixpkgs. in future nixos release we can remove it, but at least one release cycle of deprecation would be nice. --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 90d23d45eba..f4f06cc5c53 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5507,6 +5507,7 @@ in pythonFull = python.override{x11Support=true;}; python2Full = python2.override{x11Support=true;}; python3Full = python3.override{x11Support=true;}; + python27Full = python2Full; # pythonPackages further below, but assigned here because they need to be in sync pythonPackages = python2Packages;