about summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-prometheus/default.nix
blob: 733a177d6a5ef831f4de433f9135d7c20b8d13dc (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
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, prometheus-client
, pytest-django
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "django-prometheus";
  version = "2.2.0";
  format = "setuptools";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "korfuri";
    repo = pname;
    rev = version;
    sha256 = "1y1cmycc545xrys41jk8kia36hwnkwhkw26mlpfdjgb63vq30x1d";
  };

  patches = [
    ./drop-untestable-database-backends.patch
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace '"pytest-runner"' ""
  '';

  propagatedBuildInputs = [
    prometheus-client
  ];

  pythonImportsCheck = [
    "django_prometheus"
  ];

  checkInputs = [
    pytest-django
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Django middlewares to monitor your application with Prometheus.io";
    homepage = "https://github.com/korfuri/django-prometheus";
    license = licenses.asl20;
    maintainers = with maintainers; [ hexa ];
  };
}