python.pkgs.huey: init at 2.2.0

This commit is contained in:
Robin Gloster 2020-04-21 13:34:05 +02:00
parent 1a2852b447
commit 38c5add29c
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchFromGitHub, redis }:
buildPythonPackage rec {
pname = "huey";
version = "2.2.0";
src = fetchFromGitHub {
owner = "coleifer";
repo = pname;
rev = version;
sha256 = "1hgic7qrmb1kxvfgf2qqiw39nqyknf17pjvli8jfzvd9mv7cb7hh";
};
propagatedBuildInputs = [ redis ];
# connects to redis
doCheck = false;
meta = with lib; {
description = "A little task queue for python";
homepage = "https://github.com/coleifer/huey";
license = licenses.mit;
maintainers = [ maintainers.globin ];
};
}

View file

@ -2895,6 +2895,8 @@ in {
hglib = callPackage ../development/python-modules/hglib {};
huey = callPackage ../development/python-modules/huey { };
humanize = callPackage ../development/python-modules/humanize { };
humanfriendly = callPackage ../development/python-modules/humanfriendly { };