about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/django-statici18n/default.nix
blob: 8ce7bc0340a9461f916035e931d7d95ae600058c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, buildPythonPackage
, fetchFromGitHub

# build-system
, setuptools

# dependencies
, django
, django-appconf

# tests
, pytest-django
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "django-statici18n";
  version = "2.4.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "zyegfryed";
    repo = "django-statici18n";
    # https://github.com/zyegfryed/django-statici18n/issues/59
    rev = "9b83a8f0f2e625dd5f56d53cfe4e07aca9479ab6";
    hash = "sha256-KrIlWmN7um9ad2avfANOza579bjYkxTo9F0UFpvLu3A=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    django
    django-appconf
  ];

  pythonImportsCheck = [
    "statici18n"
  ];

  env.DJANGO_SETTINGS_MODULE = "tests.test_project.project.settings";

  nativeCheckInputs = [
    pytest-django
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Helper for generating Javascript catalog to static files";
    homepage = "https://github.com/zyegfryed/django-statici18n";
    license = licenses.bsd3;
    maintainers = with maintainers; [ greizgh schmittlauch ];
  };
}