mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
26 lines
562 B
Nix
26 lines
562 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, redis }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "huey";
|
|
version = "2.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coleifer";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "00fi04991skq61gjrmig8ry6936pc8zs7p8py8spfipbxf1irkjg";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|