python310Packages.rq: update disabled
This commit is contained in:
parent
d08ff16f9d
commit
40cedc109e
@ -1,29 +1,42 @@
|
||||
{ lib, fetchFromGitHub, buildPythonPackage, isPy27, click, redis }:
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, click
|
||||
, redis
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rq";
|
||||
version = "1.11";
|
||||
disabled = isPy27;
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rq";
|
||||
repo = "rq";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-fv+b5WmODaQkd8T+O8MuJ+XVC3dQ5hZwxMHtBBuqQ7Y=";
|
||||
hash = "sha256-fv+b5WmODaQkd8T+O8MuJ+XVC3dQ5hZwxMHtBBuqQ7Y=";
|
||||
};
|
||||
|
||||
# test require a running redis rerver, which is something we can't do yet
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
redis
|
||||
];
|
||||
|
||||
# Tests require a running Redis rerver
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "rq" ];
|
||||
|
||||
propagatedBuildInputs = [ click redis ];
|
||||
pythonImportsCheck = [
|
||||
"rq"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple, lightweight library for creating background jobs, and processing them";
|
||||
description = "Library for creating background jobs and processing them";
|
||||
homepage = "https://github.com/nvie/rq/";
|
||||
maintainers = with maintainers; [ mrmebelman ];
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ mrmebelman ];
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user