mir,mir_2_15: Fix builds, modernise & fix VM tests (#374873)
[NixPkgs.git] / pkgs / development / python-modules / huey / default.nix
blobe4368a49d1917c35ca03e545dee32ea3635819a8
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   wheel,
7   redis,
8 }:
10 buildPythonPackage rec {
11   pname = "huey";
12   version = "2.5.2";
14   format = "pyproject";
16   src = fetchFromGitHub {
17     owner = "coleifer";
18     repo = pname;
19     tag = version;
20     hash = "sha256-0X4gUIFqkE4GLW5Eqbolpk7KZdsvjkRxD20YmLPG11A=";
21   };
23   nativeBuildInputs = [
24     setuptools
25     wheel
26   ];
28   propagatedBuildInputs = [ redis ];
30   # connects to redis
31   doCheck = false;
33   meta = with lib; {
34     changelog = "https://github.com/coleifer/huey/blob/${src.rev}/CHANGELOG.md";
35     description = "Little task queue for python";
36     homepage = "https://github.com/coleifer/huey";
37     license = licenses.mit;
38     maintainers = [ ];
39   };