about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-03-07 22:08:17 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-03-08 15:59:12 -0300
commit5211205ca9a44c3eff29c940d4238bd87aa733fc (patch)
tree9fb900e39286f4863e03321083639d7db6bda9f1 /pkgs/top-level
parent9f3840785bed83234dd27b293ad30b38e4aece29 (diff)
downloadnixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.tar
nixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.tar.gz
nixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.tar.bz2
nixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.tar.lz
nixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.tar.xz
nixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.tar.zst
nixlib-5211205ca9a44c3eff29c940d4238bd87aa733fc.zip
pyp: remove restriction on 3.10
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 839bb25e44e6..9d6338538841 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -12341,8 +12341,7 @@ with pkgs;
 
   pywal = with python3Packages; toPythonApplication pywal;
 
-  # pyp: tests fail on Python 3.11 -- why?
-  pyp = with python310Packages; toPythonApplication pyp;
+  pyp = with python3Packages; toPythonApplication pyp;
 
   pystring = callPackage ../development/libraries/pystring { };