3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/rq/default.nix

25 lines
647 B
Nix
Raw Normal View History

2019-06-24 17:21:06 +01:00
{ stdenv, fetchPypi, buildPythonPackage, click, redis }:
buildPythonPackage rec {
pname = "rq";
2020-02-09 14:56:30 +00:00
version = "1.2.2";
2019-06-24 17:21:06 +01:00
src = fetchPypi {
inherit pname version;
2020-02-09 14:56:30 +00:00
sha256 = "0dk664lzjhj0rk4ffpv29mbcr7vh41ph1sx7ngszk3744gh1nshp";
2019-06-24 17:21:06 +01:00
};
# test require a running redis rerver, which is something we can't do yet
doCheck = false;
propagatedBuildInputs = [ click redis ];
meta = with stdenv.lib; {
description = "A simple, lightweight library for creating background jobs, and processing them";
homepage = "https://github.com/nvie/rq/";
maintainers = with maintainers; [ mrmebelman ];
license = licenses.bsd2;
};
}