Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 647 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, click, redis }: 2 3buildPythonPackage rec { 4 pname = "rq"; 5 version = "1.2.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0dk664lzjhj0rk4ffpv29mbcr7vh41ph1sx7ngszk3744gh1nshp"; 10 }; 11 12 # test require a running redis rerver, which is something we can't do yet 13 doCheck = false; 14 15 propagatedBuildInputs = [ click redis ]; 16 17 meta = with stdenv.lib; { 18 description = "A simple, lightweight library for creating background jobs, and processing them"; 19 homepage = "https://github.com/nvie/rq/"; 20 maintainers = with maintainers; [ mrmebelman ]; 21 license = licenses.bsd2; 22 }; 23} 24