python.pkgs.huey: init at 2.2.0
This commit is contained in:
parent
1a2852b447
commit
38c5add29c
25
pkgs/development/python-modules/huey/default.nix
Normal file
25
pkgs/development/python-modules/huey/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user