1 { lib, stdenv, fetchPypi, buildPythonPackage, fetchFromGitHub, simplejson, redis, setproctitle, nose, pkgs }:
3 buildPythonPackage rec {
7 propagatedBuildInputs = [ simplejson setproctitle redis pkgs.ps ];
8 checkInputs = [ nose pkgs.redis ];
10 # PyPI tarball doesn't contain tests so let's use GitHub
11 src = fetchFromGitHub {
15 sha256 = "1rkpv7gbjxl9h9g7kncmsrgmi77l7pgfq8d7dbnsr3ia2jmjqb8y";
18 # started redis-server makes this hang on darwin
19 doCheck = !stdenv.isDarwin;
23 nosetests . --exclude test_worker_pids
27 description = "Python resque clone";
28 homepage = "https://github.com/binarydud/pyres";
29 license = licenses.mit;
30 maintainers = with maintainers; [ jluttine ];
31 broken = true; # not compatible with latest redis