1{ lib, buildPythonPackage, fetchFromGitHub, redis }:
2
3buildPythonPackage rec {
4 pname = "huey";
5 version = "2.2.0";
6
7 src = fetchFromGitHub {
8 owner = "coleifer";
9 repo = pname;
10 rev = version;
11 sha256 = "1hgic7qrmb1kxvfgf2qqiw39nqyknf17pjvli8jfzvd9mv7cb7hh";
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}