depot/third_party/nixpkgs/pkgs/development/python-modules/django-timezone-field/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

59 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
poetry-core,
django,
djangorestframework,
pytz,
pytest,
pytest-lazy-fixture,
python,
}:
buildPythonPackage rec {
pname = "django-timezone-field";
version = "5.1";
disabled = pythonOlder "3.5";
format = "pyproject";
src = fetchFromGitHub {
owner = "mfogel";
repo = pname;
rev = version;
hash = "sha256-FAYO8OEE/h4rsbC4Oc57ylWV7TqQ6DOd6/2M+mb/AsM=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
django
djangorestframework
pytz
];
pythonImportsCheck = [ "timezone_field" ];
# Uses pytest.lazy_fixture directly which is broken in pytest-lazy-fixture
# https://github.com/TvoroG/pytest-lazy-fixture/issues/22
doCheck = false;
DJANGO_SETTINGS_MODULE = "tests.settings";
nativeCheckInputs = [
pytest
pytest-lazy-fixture
];
checkPhase = ''
${python.interpreter} -m django test
'';
meta = with lib; {
description = "Django app providing database, form and serializer fields for pytz timezone objects";
homepage = "https://github.com/mfogel/django-timezone-field";
license = licenses.bsd2;
maintainers = with maintainers; [ hexa ];
};
}