Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / huey / default.nix
blob0b0b02b09714fac1b75c44e8cd518495b4dffebf
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
5 , wheel
6 , redis
7 }:
9 buildPythonPackage rec {
10   pname = "huey";
11   version = "2.5.0";
13   format = "pyproject";
15   src = fetchFromGitHub {
16     owner = "coleifer";
17     repo = pname;
18     rev = "refs/tags/${version}";
19     hash = "sha256-t767eqZ6U12mG8nWEYC9Hoq/jW2yfrPkCxB3/xLKQww=";
20   };
22   nativeBuildInputs = [
23     setuptools
24     wheel
25   ];
27   propagatedBuildInputs = [ redis ];
29   # connects to redis
30   doCheck = false;
32   meta = with lib; {
33     changelog = "https://github.com/coleifer/huey/blob/${src.rev}/CHANGELOG.md";
34     description = "A little task queue for python";
35     homepage = "https://github.com/coleifer/huey";
36     license = licenses.mit;
37     maintainers = [];
38   };