about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/drf-ujson2/default.nix
blob: 58277fca7ed61042637ba26e45546b02677f6edf (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
{ lib
, buildPythonPackage
, fetchFromGitHub

# dependencies
, django
, djangorestframework
, ujson

# tests
, pytest-django
, pytest-mock
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "drf-ujson2";
  version = "1.7.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "Amertz08";
    repo = "drf_ujson2";
    rev = "refs/tags/v${version}";
    hash = "sha256-kbpZN1zOXHvRPcn+Sjbelq74cWgvCUeMXZy1eFSa6rA=";
  };

  postPatch = ''
    sed -i '/--cov/d' setup.cfg
  '';

  buildInputs = [
    django
  ];

  propagatedBuildInputs = [
    djangorestframework
    ujson
  ];

  env.DJANGO_SETTINGS_MODULE = "tests.settings";

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

  meta = with lib; {
    changelog = "https://github.com/Amertz08/drf_ujson2/releases/tag/v${version}";
    description = "JSON parser and renderer using ujson for Django Rest Framework";
    homepage = "https://github.com/Amertz08/drf_ujson2";
    maintainers = with maintainers; [ hexa ];
  };
}