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 { lib, stdenv, fetchPypi, buildPythonPackage, fetchFromGitHub, simplejson, redis, setproctitle, nose, pkgs }: 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 buildPythonPackage rec { 19 pname = "pyres"; 20 version = "1.5"; 21 22 - # ps is used in Worker.worker_pids method 23 - propagatedBuildInputs = [ simplejson setproctitle redis' pkgs.ps ]; 24 checkInputs = [ nose pkgs.redis ]; 25 26 # PyPI tarball doesn't contain tests so let's use GitHub ··· 44 homepage = "https://github.com/binarydud/pyres"; 45 license = licenses.mit; 46 maintainers = with maintainers; [ jluttine ]; 47 }; 48 }
··· 1 { lib, stdenv, fetchPypi, buildPythonPackage, fetchFromGitHub, simplejson, redis, setproctitle, nose, pkgs }: 2 3 buildPythonPackage rec { 4 pname = "pyres"; 5 version = "1.5"; 6 7 + propagatedBuildInputs = [ simplejson setproctitle redis pkgs.ps ]; 8 checkInputs = [ nose pkgs.redis ]; 9 10 # PyPI tarball doesn't contain tests so let's use GitHub ··· 28 homepage = "https://github.com/binarydud/pyres"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ jluttine ]; 31 + broken = true; # not compatible with latest redis 32 }; 33 }