summary refs log tree commit diff
path: root/pkgs/development/libraries/libxslt
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-03-29 22:14:24 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-04-02 13:29:47 -0400
commitb6187aa5967e4ed33809d2916ef9398d4a9d6af9 (patch)
treebb7fb474bd745a4d8dd38059e8f56b7939c19e9e /pkgs/development/libraries/libxslt
parent570e3edc8519c666b74a5ca469e1dd286902691d (diff)
downloadnixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.tar
nixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.tar.gz
nixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.tar.bz2
nixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.tar.lz
nixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.tar.xz
nixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.tar.zst
nixpkgs-b6187aa5967e4ed33809d2916ef9398d4a9d6af9.zip
libxml2,libxslt: fix pythonSupport=false override
Diffstat (limited to 'pkgs/development/libraries/libxslt')
-rw-r--r--pkgs/development/libraries/libxslt/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix
index 6d12329a7f5..05da09ec5a4 100644
--- a/pkgs/development/libraries/libxslt/default.nix
+++ b/pkgs/development/libraries/libxslt/default.nix
@@ -3,9 +3,6 @@
 , pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform
 }:
 
-assert pythonSupport -> python != null;
-assert pythonSupport -> libxml2.pythonSupport;
-
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
@@ -53,5 +50,6 @@ stdenv.mkDerivation rec {
     license = licenses.mit;
     platforms = platforms.all;
     maintainers = [ maintainers.eelco ];
+    broken = !(pythonSupport -> libxml2.pythonSupport); # see #73102 for why this is not an assert
   };
 }