Commit 3c19b6d4 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by Yt
Browse files

python3Packages.django-crontab: init at 0.7.1

parent 2b7e21b3
Loading
Loading
Loading
Loading
+52 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, django
, setuptools
, pytestCheckHook
, pytest-django
, mock
, nose
}:

buildPythonPackage rec {
  pname = "django-crontab";
  version = "0.7.1";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "kraiz";
    repo = "django-crontab";
    rev = "refs/tags/${version}";
    hash = "sha256-qX+N3SMUyhMWoWluRCeOPGYKCMBnjg61P281HXHkfJk=";
  };

  propagatedBuildInputs = [
    django
    setuptools
  ];

  nativeCheckInputs = [
    django
    mock
    nose
    pytestCheckHook
    pytest-django
  ];

  # Tests currently fail with: RuntimeError: setup_test_environment() was
  # already called and can't be called again without first calling
  # teardown_test_environment()
  doCheck = false;

  DJANGO_SETTINGS_MODULE = "tests.settings";

  pythonImportsCheck = [ "django_crontab" ];

  meta = with lib; {
    description = "Simple crontab powered job scheduling for Django";
    homepage = "https://github.com/kraiz/django-crontab";
    license = licenses.mit;
    maintainers = with maintainers; [ onny ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2962,6 +2962,8 @@ self: super: with self; {
  django-crispy-forms = callPackage ../development/python-modules/django-crispy-forms { };
  django-crontab = callPackage ../development/python-modules/django-crontab { };
  django-cryptography = callPackage ../development/python-modules/django-cryptography { };
  django-csp = callPackage ../development/python-modules/django-csp { };