mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
43 lines
827 B
Nix
43 lines
827 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, click
|
|
, redis
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rq";
|
|
version = "1.15.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rq";
|
|
repo = "rq";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cymNXFI+6YEVw2Pc7u6+vroC0428oW7BTLxyBgPqLng=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
redis
|
|
];
|
|
|
|
# Tests require a running Redis rerver
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"rq"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for creating background jobs and processing them";
|
|
homepage = "https://github.com/nvie/rq/";
|
|
changelog = "https://github.com/rq/rq/releases/tag/v${version}";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ mrmebelman ];
|
|
};
|
|
}
|
|
|