From d25a9f57e380e780765f9ee54ad86b68515b4b48 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Aug 2017 10:39:57 +0200 Subject: [PATCH] pythonPackages.html5lib_0_9999999: Fix build Regression introduced by 345b35c48af0c6534fc649ef4b2050ebf0b91d50. The commit in question switched the implementation of buildPythonPackage so that .override now is behaving the same way as for other packages that are using callPackage. So the fix for html5lib_0_9999999 is to just use .overridePythonAttrs instead of .override. Note that the mentioned commit initially introduced this as overridePythonPackage but it got later renamed to overridePythonAttrs in abdb58e407d0351894ea1ee32c3484a89f1e53cd. Signed-off-by: aszlig --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d745a065d10..e04eeb770c8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2070,7 +2070,7 @@ in { blaze = callPackage ../development/python-modules/blaze { }; # Needed for FlexGet 1.2.337 and calibre 2.76.0 - html5lib_0_9999999 = self.html5lib.override rec { + html5lib_0_9999999 = self.html5lib.overridePythonAttrs rec { name = "html5lib-${version}"; buildInputs = with self; [ nose flake8 ]; propagatedBuildInputs = with self; [ six ];