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

buildPythonPackage rec {
  pname = "django-picklefield";
  version = "3.0.1";
  format = "setuptools";

  # The PyPi source doesn't contain tests
  src = fetchFromGitHub {
    owner = "gintas";
    repo = pname;
    rev = "v${version}";
    sha256 = "0ni7bc86k0ra4pc8zv451pzlpkhs1nyil1sq9jdb4m2mib87b5fk";
  };

  propagatedBuildInputs = [ django ];

  # Tests are failing with Django 3.2
  # https://github.com/gintas/django-picklefield/issues/58
  doCheck = false;

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} -m django test --settings=tests.settings
    runHook postCheck
  '';

  meta = with lib; {
    description = "Pickled object field for Django";
    homepage = "https://github.com/gintas/django-picklefield";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}