summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-09-08 11:20:47 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-09-08 11:20:47 +0200
commita02002debacc30a151494c0c7b069e0ef2800a60 (patch)
tree0f2d9a9041ee711fadbfcf2bd90731114e73078e
parent182f1fc2c8f046f97e0c9f5626e9647b66f24ef7 (diff)
downloadnixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.tar
nixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.tar.gz
nixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.tar.bz2
nixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.tar.lz
nixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.tar.xz
nixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.tar.zst
nixpkgs-a02002debacc30a151494c0c7b069e0ef2800a60.zip
pythonPackages.pycaption: fix build (#46356)
The `beaitufulsoup4` package distributed by `nixpkgs` is now at `4.6.3`.

Additionally it fixes `gnomecaption` which depends on the broken
`pycaption` package.

See https://hydra.nixos.org/build/81000247
See https://hydra.nixos.org/build/80723223

Addresses #45960
-rw-r--r--pkgs/development/python-modules/pycaption/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pycaption/default.nix b/pkgs/development/python-modules/pycaption/default.nix
index d4ed6088409..468011e2a80 100644
--- a/pkgs/development/python-modules/pycaption/default.nix
+++ b/pkgs/development/python-modules/pycaption/default.nix
@@ -17,7 +17,7 @@ buildPythonPackage rec {
   prePatch = ''
     substituteInPlace setup.py \
       --replace 'beautifulsoup4>=4.2.1,<4.5.0' \
-                'beautifulsoup4>=4.2.1,<=4.6.0'
+                'beautifulsoup4>=4.2.1,<=4.6.3'
   '';
 
   # don't require enum34 on python >= 3.4