ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / celery-redbeat / default.nix
bloba1be0b95826dd9d79275f2309cdba1310b78098a
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchFromGitHub
5 , python-dateutil
6 , celery
7 , redis
8 , tenacity
9 , pytestCheckHook
10 , fakeredis
11 , mock
14 buildPythonPackage rec {
15   pname = "celery-redbeat";
16   version = "2.0.0";
18   src = fetchFromGitHub {
19     owner = "sibson";
20     repo = "redbeat";
21     rev = "v${version}";
22     hash = "sha256-pu4umhfNFZ30bQu5PcT2LYN4WGzFj4p4/qHm3pVIV+c=";
23   };
25   propagatedBuildInputs = [
26     python-dateutil
27     celery
28     redis
29     tenacity
30   ];
32   checkInputs = [
33     pytestCheckHook
34     fakeredis
35     mock
36   ];
38   pythonImportsCheck = [ "redbeat" ];
40   meta = with lib; {
41     description = "Database-backed Periodic Tasks";
42     homepage = "https://github.com/celery/django-celery-beat";
43     license = licenses.bsd3;
44     maintainers = with maintainers; [ onny ];
45   };