lol

python3Packages.pyres: mark broken

authored by

Jonathan Ringer and committed by
Martin Weinelt
7d2de8f2 803cfa50

+2 -17
+2 -17
pkgs/development/python-modules/pyres/default.nix
··· 1 1 { lib, stdenv, fetchPypi, buildPythonPackage, fetchFromGitHub, simplejson, redis, setproctitle, nose, pkgs }: 2 2 3 - let 4 - 5 - # the requirements of `pyres` support Redis 3.x (due to a missing upper-bound), 6 - # but it doesn't support Redis 3.x. 7 - redis' = redis.overridePythonAttrs (old: rec { 8 - pname = "redis"; 9 - version = "2.10.6"; 10 - src = fetchPypi { 11 - inherit pname version; 12 - sha256 = "03vcgklykny0g0wpvqmy8p6azi2s078317wgb2xjv5m2rs9sjb52"; 13 - }; 14 - }); 15 - 16 - in 17 - 18 3 buildPythonPackage rec { 19 4 pname = "pyres"; 20 5 version = "1.5"; 21 6 22 - # ps is used in Worker.worker_pids method 23 - propagatedBuildInputs = [ simplejson setproctitle redis' pkgs.ps ]; 7 + propagatedBuildInputs = [ simplejson setproctitle redis pkgs.ps ]; 24 8 checkInputs = [ nose pkgs.redis ]; 25 9 26 10 # PyPI tarball doesn't contain tests so let's use GitHub ··· 44 28 homepage = "https://github.com/binarydud/pyres"; 45 29 license = licenses.mit; 46 30 maintainers = with maintainers; [ jluttine ]; 31 + broken = true; # not compatible with latest redis 47 32 }; 48 33 }