1{ lib, buildPythonPackage, fetchFromGitHub, redis }:
2
3buildPythonPackage rec {
4 pname = "huey";
5 version = "2.4.2";
6
7 src = fetchFromGitHub {
8 owner = "coleifer";
9 repo = pname;
10 rev = version;
11 sha256 = "00fi04991skq61gjrmig8ry6936pc8zs7p8py8spfipbxf1irkjg";
12 };
13
14 propagatedBuildInputs = [ redis ];
15
16 # connects to redis
17 doCheck = false;
18
19 meta = with lib; {
20 description = "A little task queue for python";
21 homepage = "https://github.com/coleifer/huey";
22 license = licenses.mit;
23 maintainers = [ maintainers.globin ];
24 };
25}