summary refs log tree commit diff
path: root/pkgs/top-level/python2-packages.nix
diff options
context:
space:
mode:
authorTom Prince <tom.prince@private.storage>2021-12-02 12:57:55 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-12-09 19:29:18 -0800
commitdeaec9f2890f900c74b6fe3fa698092c16fde320 (patch)
treefa65b7e443aa0354e80512d67ce907a877a55ead /pkgs/top-level/python2-packages.nix
parent7de4ded03b7dae65f4898dc35dbfc1d4633558da (diff)
downloadnixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.tar
nixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.tar.gz
nixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.tar.bz2
nixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.tar.lz
nixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.tar.xz
nixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.tar.zst
nixpkgs-deaec9f2890f900c74b6fe3fa698092c16fde320.zip
Fix some places where python2 packages fail to evaluate.
I unfortunately still depend on some python2 packages. It appears
that these two packages fail to evaluate, in a way that `tryEval`
doesn't catch. This changes them to be explicitly disabled there.
Diffstat (limited to 'pkgs/top-level/python2-packages.nix')
-rw-r--r--pkgs/top-level/python2-packages.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/python2-packages.nix b/pkgs/top-level/python2-packages.nix
index 7e485bdf3bf..a8899a18198 100644
--- a/pkgs/top-level/python2-packages.nix
+++ b/pkgs/top-level/python2-packages.nix
@@ -12,7 +12,7 @@ with self; with super; {
     inherit (pkgs) antlr4;
   };
 
-  appleseed = toPythonModule (pkgs.appleseed.override { inherit (self) python; });
+  appleseed = disabled super.appleseed;
 
   application = callPackage ../development/python-modules/application { };
 
@@ -616,6 +616,8 @@ with self; with super; {
 
   tarman = callPackage ../development/python-modules/tarman { };
 
+  tensorflow-bin = disabled super.tensorflow-bin;
+
   thumbor = callPackage ../development/python-modules/thumbor { };
 
   tmdb3 = callPackage ../development/python-modules/tmdb3 { };